This commit is contained in:
2025-11-07 19:40:04 +08:00
parent ce1578853f
commit 783aa03f67
25 changed files with 3855 additions and 0 deletions
+11
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')