12345678910111213141516171819202122232425262728293031323334 |
- import Vue from 'vue'
- import 'normalize.css/normalize.css'
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- import '@/styles/index.scss'
- import App from './App'
- import store from './store'
- import router from './router'
- import '@/icons'
- import '@/permission'
- import '@/checkPermission'
- import _ from 'lodash'
- Vue.prototype._ = _
- Vue.prototype.doesJobShow = PLATFROM_CONFIG.doesJobShow
- Vue.prototype.accountGroupType = PLATFROM_CONFIG.accountGroupType
- import * as echarts from 'echarts'
- import Vue2OrgTree from 'vue2-org-tree'
- import 'vue2-org-tree/dist/style.css'
- Vue.use(Vue2OrgTree)
- Vue.use(ElementUI)
- Vue.prototype.$echarts = echarts
- Vue.config.productionTip = false
- new Vue({
- router,
- store,
- render: (h) => h(App)
- }).$mount('#app')
|