bladex前端ui项目,基于avue-cli2.0开发
包含基础工作流,不包含表单设计器
https://git.javablade.com/blade/Saber
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.
48 lines
1.1 KiB
48 lines
1.1 KiB
|
7 years ago
|
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'
|
||
|
|
|
||
|
|
Vue.use(router)
|
||
|
|
Vue.use(VueAxios, axios)
|
||
|
|
Vue.use(Element, {
|
||
|
|
i18n: (key, value) => i18n.t(key, value)
|
||
|
|
})
|
||
|
|
Vue.use(window.AVUE, {
|
||
|
|
i18n: (key, value) => i18n.t(key, value)
|
||
|
|
})
|
||
|
|
//注册全局容器
|
||
|
|
Vue.component('basicContainer', basicContainer)
|
||
|
|
// 加载相关url地址
|
||
|
|
Object.keys(urls).forEach(key => {
|
||
|
|
Vue.prototype[key] = urls[key];
|
||
|
|
})
|
||
|
|
|
||
|
|
// 动态加载阿里云字体库
|
||
|
|
iconfontVersion.forEach(ele => {
|
||
|
|
loadStyle(iconfontUrl.replace('$key', ele));
|
||
|
|
})
|
||
|
|
|
||
|
|
Vue.config.productionTip = false;
|
||
|
|
|
||
|
|
new Vue({
|
||
|
|
router,
|
||
|
|
store,
|
||
|
|
i18n,
|
||
|
|
render: h => h(App)
|
||
|
|
}).$mount('#app')
|