Import local app source

This commit is contained in:
Codex
2026-04-23 10:43:49 +00:00
commit 283972860c
65 changed files with 7942 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
// src/main.js
import { createApp } from 'vue'
import App from './App.vue'
import router from './router' // 确保这个导入是正确的
const app = createApp(App)
app.use(router) // 使用路由器插件
app.mount('#app')