initial commit

This commit is contained in:
xiaomai
2025-09-17 20:29:40 +08:00
commit db25c5beff
21 changed files with 3511 additions and 0 deletions

12
src/main.ts Normal file
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')