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()
|