Changes Initial commit

This commit is contained in:
2026-04-23 15:05:23 +08:00
parent de2dcc414d
commit c5013f3f68
21 changed files with 5716 additions and 0 deletions

11
src/main.js Normal file
View File

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