This commit is contained in:
2025-03-01 21:30:49 +08:00
commit 04d22ee31b
29 changed files with 4477 additions and 0 deletions

11
src/main.js Normal file
View File

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