first commit

This commit is contained in:
2025-11-24 17:23:46 +08:00
commit bc1a909a4d
21 changed files with 2740 additions and 0 deletions

12
src/main.js Normal file
View File

@@ -0,0 +1,12 @@
import { createApp } from 'vue'
import './style.css'
import '@phosphor-icons/web/regular'
import '@phosphor-icons/web/bold'
import '@phosphor-icons/web/fill'
import App from './App.vue'
import router from './router'
// 创建应用根实例并挂载路由
const app = createApp(App)
app.use(router)
app.mount('#app')