This commit is contained in:
zhutao
2025-11-28 15:23:35 +08:00
commit 34a3de6c8e
15 changed files with 2380 additions and 0 deletions

9
src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router'
let app = createApp(App)
app.use(router)
app.mount('#app')