fix: 仪表板编辑/大屏编辑界面,图片上传控件没有显示「+」号

This commit is contained in:
dataeaseShu 2023-10-30 14:32:08 +08:00
parent de5208cd01
commit 539e00e358

View File

@ -57,7 +57,7 @@ import AppElement from './App.vue'
import { setupI18n } from '@/plugins/vue-i18n'
import { setupStore } from '@/store'
import { useUserStoreWithOut } from '@/store/modules/user'
import { setupElementPlus } from '@/plugins/element-plus'
import { setupElementPlus, setupElementPlusIcons } from '@/plugins/element-plus'
import { setupRouter } from '@/router'
const setupAll = async (dom: string, componentName: string): Promise<App<Element>> => {
@ -66,6 +66,7 @@ const setupAll = async (dom: string, componentName: string): Promise<App<Element
setupStore(app)
setupRouter(app)
setupElementPlus(app)
setupElementPlusIcons(app)
const userStore = useUserStoreWithOut()
await userStore.setUser()
app.mount(dom)