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.
57 lines
1.4 KiB
57 lines
1.4 KiB
import Vue from 'vue'; |
|
import axios from './router/axios'; |
|
import VueAxios from 'vue-axios'; |
|
import App from './App'; |
|
import router from './router/router'; |
|
import './permission'; // 权限 |
|
import './error'; // 日志 |
|
import store from './store'; |
|
import {loadStyle} from './util/util' |
|
import * as urls from '@/config/env'; |
|
import Element from 'element-ui'; |
|
import { |
|
iconfontUrl, |
|
iconfontVersion |
|
} from '@/config/env'; |
|
import i18n from './lang' // Internationalization |
|
import './styles/common.scss'; |
|
|
|
import basicContainer from './components/basic-container/main' |
|
import thirdRegister from './components/third-register/main' |
|
import Authorization from './components/authorization' |
|
|
|
Vue.use(router) |
|
Vue.use(VueAxios, axios) |
|
Vue.use(Authorization) |
|
Vue.use(Element, { |
|
i18n: (key, value) => i18n.t(key, value) |
|
}) |
|
Vue.use(window.AVUE, { |
|
size: 'small', |
|
tableSize: 'small', |
|
calcHeight: -90, |
|
i18n: (key, value) => i18n.t(key, value) |
|
}) |
|
//注册全局容器 |
|
Vue.component('basicContainer', basicContainer) |
|
Vue.component('thirdRegister', thirdRegister); |
|
// 加载相关url地址 |
|
Object.keys(urls).forEach(key => { |
|
Vue.prototype[key] = urls[key]; |
|
}) |
|
|
|
// 动态加载阿里云字体库 |
|
iconfontVersion.forEach(ele => { |
|
loadStyle(iconfontUrl.replace('$key', ele)); |
|
}) |
|
|
|
Vue.config.productionTip = false; |
|
|
|
let vue = new Vue({ |
|
router, |
|
store, |
|
i18n, |
|
render: h => h(App) |
|
}).$mount('#app') |
|
|
|
export default vue;
|
|
|