You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
/* eslint-disable */
|
|
// 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 { checkModuleKey, checkModules } from './core/app'
|
|
import ProLayout, { PageHeaderWrapper } from './layouts/ProLayout'
|
|
import themePluginConfig from '../config/themePluginConfig'
|
|
import bootstrap from './core/bootstrap'
|
|
|
|
import './core/lazy_use'
|
|
import './permission' // permission control
|
|
import './utils/filter' // global filter
|
|
import './global.less'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
// mount axios to `Vue.$http` and `this.$http`
|
|
Vue.use(VueAxios)
|
|
Vue.component('pro-layout', ProLayout)
|
|
Vue.component('page-header-wrapper', PageHeaderWrapper)
|
|
|
|
window.umi_plugin_ant_themeVar = themePluginConfig.theme
|
|
|
|
// // 全局函数
|
|
// Vue.prototype.$checkModule = checkModuleKey
|
|
// Vue.prototype.$checkModules = checkModules
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
i18n,
|
|
created: bootstrap,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|
|
|