2022-11-28 16:38:45 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import Antd from 'ant-design-vue';
|
|
|
|
|
import 'ant-design-vue/dist/antd.less';
|
|
|
|
|
import router from './router/index';
|
2022-12-24 19:45:54 +08:00
|
|
|
import { createPinia } from 'pinia'
|
2022-11-28 16:38:45 +08:00
|
|
|
|
2022-12-24 19:45:54 +08:00
|
|
|
const pinia = createPinia()
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(Antd).use(router).use(pinia).mount('#app')
|