first init

This commit is contained in:
ISMAIL MASSERAN
2026-06-08 11:37:14 +08:00
commit 94ecbe5887
1058 changed files with 87732 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import "./index.css";
import { createApp } from 'vue'
import { pinia } from '@/pinia'
import App from './App.vue'
import router from './router/index.ts'
const app = createApp(App)
app.use(pinia)
app.use(router)
app.mount('#app')