import Vue from 'vue' import Element from 'element-ui' import App from '@/App' import i18n from '@/i18n' import router from '@/router' import store from '@/store' import '@/icons' import '@/element-ui/theme/index.css' import '@/assets/scss/aui.scss' import http from '@/utils/request' import postReq from '@/api' import { hasPermission, hasPermission2 } from '@/utils' import cloneDeep from 'lodash/cloneDeep' import BaiduMap from 'vue-baidu-map' Vue.config.productionTip = false Vue.use(Element, { size: 'default', i18n: (key, value) => i18n.t(key, value) }) Vue.use(BaiduMap, { // ak 是在百度地图开发者平台申请的密钥 详见 http://lbsyun.baidu.com/apiconsole/key */ ak: 'nL5KEWLUYhIxbFlhPGEAKN5aAzO1lMiY' }) // 非生产环境, 适配mockjs模拟数据 // api: https://github.com/nuysoft/Mock if (process.env.NODE_ENV !== 'production') { require('@/mock') } // 点击非自身或者子类,则触发事件 Vue.directive('click-outside', { bind: function (el, binding, vnode) { el.clickOutsideEvent = function (event) { // here I check that click was outside the el and his childrens if (!(el === event.target || el.contains(event.target))) { // and if it did, call method provided in attribute value vnode.context[binding.expression](event) } } document.body.addEventListener('click', el.clickOutsideEvent) }, unbind: function (el) { document.body.removeEventListener('click', el.clickOutsideEvent) } }) // 挂载全局 Vue.prototype.$http = http Vue.prototype.$postReq = postReq Vue.prototype.$hasPermission = hasPermission Vue.prototype.$hasPermission2 = hasPermission2 // 保存整站vuex本地储存初始状态 window.SITE_CONFIG['storeState'] = cloneDeep(store.state) new Vue({ i18n, router, store, render: h => h(App) }).$mount('#app')