zhangxiaoxu123456
2021-12-17 4d4a844ef624dde8667b314d353599297f6cb8d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import Vue from 'vue'
import App from './App'
import { getStore, setStore, removeStore } from "./libs/store"
Vue.prototype.getStore = getStore;
Vue.prototype.setStore = setStore;
Vue.prototype.removeStore = removeStore;
 
Vue.config.productionTip = false
 
App.mpType = 'app'
 
// 引入全局uView
import uView from 'uview-ui'
Vue.use(uView);
 
import * as navTo from '@/libs/navTo'
Vue.prototype.$navTo = navTo
 
import './common/iconfont.css'
 
import Moment from 'moment'
Vue.prototype.moment = Moment
 
 
const app = new Vue({
    ...App
})
 
// http拦截器,此为需要加入的内容,如果不是写在common目录,请自行修改引入路径
import httpInterceptor from '@/api/http.interceptor.js'
// 这里需要写在最后,是为了等Vue创建对象完成,引入"app"对象(也即页面的"this"实例)
Vue.use(httpInterceptor, app)
 
// http接口API集中管理引入部分
import httpApi from '@/api/http.api.js'
Vue.use(httpApi, app)
 
app.$mount()