Main page created without function .

This commit is contained in:
Daniel-HomePC
2024-10-31 16:19:48 +01:00
parent a1318e7397
commit be36049883
24 changed files with 3113 additions and 33 deletions

View File

@@ -1,5 +1,8 @@
import './style.css'
import { createApp } from 'vue'
import App from './App.vue'
import './assets/main.css'
createApp(App).mount('#app')
import { createApp } from 'vue'
import App from '@/App.vue';
const app = createApp(App);
app.mount('#app');