mt-qj-wms-ui/src/main.js

37 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-09-27 10:01:12 +08:00
import Vue from 'vue'
2021-11-15 08:22:01 +08:00
import App from '@/App'
import router from '@/router' // api: https://github.com/vuejs/vue-router
import store from '@/store' // api: https://github.com/vuejs/vuex
import VueCookie from 'vue-cookie' // api: https://github.com/alfhen/vue-cookie
import '@/element-ui' // api: https://github.com/ElemeFE/element
import '@/icons' // api: http://www.iconfont.cn/
import '@/element-ui-theme'
import '@/assets/scss/index.scss'
import httpRequest from '@/utils/httpRequest' // api: https://github.com/axios/axios
import { isAuth } from '@/utils'
import cloneDeep from 'lodash/cloneDeep'
Vue.use(VueCookie)
Vue.config.productionTip = false
2021-09-27 10:01:12 +08:00
2021-11-15 08:22:01 +08:00
// 非生产环境, 适配mockjs模拟数据 // api: https://github.com/nuysoft/Mock
if (process.env.NODE_ENV !== 'production') {
require('@/mock')
}
2021-09-27 10:01:12 +08:00
2021-11-15 08:22:01 +08:00
// 挂载全局
Vue.prototype.$http = httpRequest // ajax请求方法
Vue.prototype.isAuth = isAuth // 权限方法
2021-09-27 10:01:12 +08:00
2021-11-15 08:22:01 +08:00
// 保存整站vuex本地储存初始状态
window.SITE_CONFIG['storeState'] = cloneDeep(store.state)
2021-10-20 16:25:18 +08:00
2021-11-15 08:22:01 +08:00
/* eslint-disable no-new */
2021-09-27 10:01:12 +08:00
new Vue({
el: '#app',
router,
store,
2021-11-15 08:22:01 +08:00
template: '<App/>',
components: { App }
2021-09-27 10:01:12 +08:00
})