2025-09-01 18:18:44 +08:00
|
|
|
// src/main.ts
|
2025-08-31 23:25:36 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import App from './App.vue'
|
2025-09-01 18:18:44 +08:00
|
|
|
import router from './router' // 新增
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
import Antd from 'ant-design-vue'
|
|
|
|
|
import 'ant-design-vue/dist/reset.css'
|
2025-08-31 23:25:36 +08:00
|
|
|
|
2025-09-01 18:18:44 +08:00
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia()) // 注册Pinia
|
|
|
|
|
app.use(router) // 注册路由
|
|
|
|
|
app.use(Antd) // 注册Ant Design Vue
|
|
|
|
|
app.mount('#app')
|