随机数据工具完成,包含①页面数据填充;②自动生成业务数据

This commit is contained in:
aixianling
2022-11-07 16:03:02 +08:00
parent 2e9cd1c5a9
commit 4466f66584
4 changed files with 84 additions and 21 deletions

View File

@@ -30,6 +30,7 @@ store.dispatch('getSystem').then(({colorScheme}) => {
Vue.prototype.$theme = theme?.web || "blue"
return import(`dvcp-ui/lib/styles/theme.${theme?.web}.scss`).catch(() => 0)
}).finally(() => {
Vue.prototype.$vm = app
!theme ? app.$mount('#app') : import(`dvcp-ui/lib/styles/common.scss`).finally(() => app.$mount('#app'))
})