更新依赖和一些基础的功能

This commit is contained in:
2025-05-15 21:24:56 +08:00
parent 6b9faa702b
commit 7efc3dfd67
12 changed files with 1297 additions and 43 deletions

View File

@@ -1,5 +1,16 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import Antd from 'ant-design-vue'
import './style.css'
import App from './App.vue'
// 注册路由
import router from './router'
createApp(App).mount('#app')
const app = createApp(App)
// 注册Ant Design组件
app.use(createPinia())
app.use(router)
app.use(Antd)
app.mount('#app')