初始化前端目录

This commit is contained in:
2025-09-02 00:11:55 +08:00
parent 5d3d515b8e
commit 239be643c1
11 changed files with 1458 additions and 115 deletions

View File

@@ -8,7 +8,11 @@ import 'ant-design-vue/dist/reset.css'
const app = createApp(App)
const pinia = createPinia()
app.use(createPinia()) // 注册Pinia
app.use(router) // 注册路由
app.use(pinia);
app.use(Antd) // 注册Ant Design Vue
app.mount('#app')