some initial setup work for GUI

This commit is contained in:
2024-05-29 08:34:07 +02:00
parent cc09bb87f8
commit eb15e1fc3f
19 changed files with 3705 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')