import Vue from 'vue' import App from './App' import IMService from './static/imservice.js' import uView from "uview-ui"; Vue.config.productionTip = false Vue.use(uView); App.mpType = 'app' // 当前 app 版本号 Vue.prototype.$app_version = '1.0.0'; Vue.prototype.imService = new IMService(); Vue.prototype.a = 1; import store from '@/common/store/index.js' Vue.prototype.$store = store; const app = new Vue({ ...App, store }) // http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用 import httpInterceptor from '@/common/http.interceptor.js' Vue.use(httpInterceptor, app) // http接口API集中管理引入部分 import httpApi from '@/common/http.api.js' Vue.use(httpApi, app) app.$mount()