@@ -0,0 +1,56 @@
|
||||
// with polyfills
|
||||
import 'core-js/stable'
|
||||
import 'regenerator-runtime/runtime'
|
||||
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import store from './store/'
|
||||
import i18n from './locales'
|
||||
import { VueAxios } from './utils/request'
|
||||
import ProLayout, { PageHeaderWrapper } from '@ant-design-vue/pro-layout'
|
||||
import themePluginConfig from '../config/themePluginConfig'
|
||||
|
||||
// mock
|
||||
// WARNING: `mockjs` NOT SUPPORT `IE` PLEASE DO NOT USE IN `production` ENV.
|
||||
import './mock'
|
||||
|
||||
import bootstrap from './core/bootstrap'
|
||||
import './core/lazy_use' // use lazy load components
|
||||
import './permission' // permission control
|
||||
import './utils/filter' // global filter
|
||||
import './global.less' // global style
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
// Suppress noisy ResizeObserver loop errors (harmless in most cases on responsive layouts)
|
||||
if (typeof window !== 'undefined') {
|
||||
const ignoreResizeObserverError = (e) => {
|
||||
const msg = (e && (e.reason && e.reason.message || e.message)) || ''
|
||||
if (msg.includes('ResizeObserver loop') || msg.includes('ResizeObserver loop limit exceeded')) {
|
||||
e.preventDefault && e.preventDefault()
|
||||
e.stopImmediatePropagation && e.stopImmediatePropagation()
|
||||
return false
|
||||
}
|
||||
}
|
||||
window.addEventListener('error', ignoreResizeObserverError)
|
||||
window.addEventListener('unhandledrejection', ignoreResizeObserverError)
|
||||
}
|
||||
|
||||
// mount axios to `Vue.$http` and `this.$http`
|
||||
Vue.use(VueAxios)
|
||||
// use pro-layout components
|
||||
Vue.component('pro-layout', ProLayout)
|
||||
Vue.component('page-container', PageHeaderWrapper)
|
||||
Vue.component('page-header-wrapper', PageHeaderWrapper)
|
||||
|
||||
window.umi_plugin_ant_themeVar = themePluginConfig.theme
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
i18n,
|
||||
// init localstorage, vuex, Logo message
|
||||
created: bootstrap,
|
||||
render: h => h(App)
|
||||
}).$mount('#app')
|
||||
Reference in New Issue
Block a user