123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import Vue from 'vue'
- import 'normalize.css/normalize.css' // A modern alternative to CSS resets
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- // import locale from 'element-ui/lib/locale/lang/en' // lang i18n
- import * as echarts from 'echarts'
- Vue.prototype.$echarts = echarts
- import '@/styles/index.scss' // global css
- import App from './App'
- import store from './store'
- import router from './router'
- import '@/icons' // icon
- import '@/permission' // permission control
- import * as filters from './filters' // global filters
- // 成功/错误提示
- import {successMsg, errorMsg, warningNotify, checkBtnRole} from '@/utils/common.js'
- Vue.prototype.$successMsg = successMsg;
- Vue.prototype.$errorMsg = errorMsg;
- Vue.prototype.$warningNotify = warningNotify;
- Vue.prototype.$checkBtnRole = checkBtnRole;
- // 自定义组件
- import ExportButton from '@/components/Common/export-button.vue'
- Vue.component('ExportButton', ExportButton);
- import ImportButton from '@/components/Common/import-button.vue'
- Vue.component('ImportButton', ImportButton);
- Vue.prototype.$imageUrl = process.env.VUE_APP_BASE_API + 'img/get?key=';
- /**
- * If you don't want to use mock-server
- * you want to use MockJs for mock api
- * you can execute: mockXHR()
- *
- * Currently MockJs will be used in the production environment,
- * please remove it before going online ! ! !
- */
- if (process.env.NODE_ENV === 'production') {
- const { mockXHR } = require('../mock')
- mockXHR()
- }
- // set ElementUI lang to EN
- // Vue.use(ElementUI, { locale })
- // 如果想要中文版 element-ui,按如下方式声明
- Vue.use(ElementUI)
- // register global utility filters
- Object.keys(filters).forEach(key => {
- Vue.filter(key, filters[key])
- })
- Vue.config.productionTip = false
- new Vue({
- el: '#app',
- router,
- store,
- render: h => h(App)
- })
|