Browse Source
Merge pull request #690 from colinin/upt-5.3.4
fix missing references to production components
pull/712/head
yx lin
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
apps/vue/src/main.ts
|
|
|
@ -5,6 +5,7 @@ import 'virtual:windi-utilities.css'; |
|
|
|
// Register icon sprite
|
|
|
|
import 'virtual:svg-icons-register'; |
|
|
|
import App from './App.vue'; |
|
|
|
import Antd from 'ant-design-vue'; |
|
|
|
import VueCookies from 'vue-cookies' |
|
|
|
import { createApp } from 'vue'; |
|
|
|
import { initAppConfigStore, initAbpConfigStore } from '/@/logics/initAppConfig'; |
|
|
|
@ -52,6 +53,8 @@ async function bootstrap() { |
|
|
|
|
|
|
|
app.use(VueCookies); |
|
|
|
|
|
|
|
app.use(Antd); |
|
|
|
|
|
|
|
app.mount('#app'); |
|
|
|
} |
|
|
|
|
|
|
|
|