perf: menu selected and user info view

This commit is contained in:
zchengo
2022-12-24 19:45:54 +08:00
parent 4db8470507
commit 319dc4967e
5 changed files with 82 additions and 112 deletions
+5 -1
View File
@@ -3,5 +3,9 @@ import App from './App.vue'
import Antd from 'ant-design-vue';
import 'ant-design-vue/dist/antd.less';
import router from './router/index';
import { createPinia } from 'pinia'
createApp(App).use(Antd).use(router).mount('#app')
const pinia = createPinia()
const app = createApp(App)
app.use(Antd).use(router).use(pinia).mount('#app')