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 zh from 'element-ui/lib/locale/lang/zh-CN' // lang i18n import directive from './directive' import auth from './plugins/auth' 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 { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree, getMonthDate } from "@/utils/common"; Vue.prototype.parseTime = parseTime Vue.prototype.resetForm = resetForm Vue.prototype.addDateRange = addDateRange Vue.prototype.selectDictLabel = selectDictLabel Vue.prototype.selectDictLabels = selectDictLabels Vue.prototype.handleTree = handleTree Vue.prototype.getMonthDate = getMonthDate // set ElementUI lang to EN // Vue.use(ElementUI, { locale }) // 如果想要中文版 element-ui,按如下方式声明 Vue.use(ElementUI, {locale: zh}) Vue.use(directive) Vue.use(auth) Vue.config.productionTip = false new Vue({ el: '#app', router, store, render: h => h(App) })