This commit is contained in:
Félix Dorn 2025-06-19 12:27:59 +02:00
commit c3ee96429c
46 changed files with 6006 additions and 0 deletions

14
www/src/main.ts Normal file
View file

@ -0,0 +1,14 @@
import './assets/main.css'
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')