demingshangjia/main.js

24 lines
624 B
JavaScript
Raw Normal View History

2020-06-11 09:16:12 +08:00
import Vue from 'vue'
import App from './App'
2020-08-07 14:44:11 +08:00
import IMService from './static/imservice.js'
2020-06-11 17:54:15 +08:00
import uView from "uview-ui";
Vue.use(uView);
2020-06-11 09:16:12 +08:00
Vue.config.productionTip = false
2020-08-07 14:44:11 +08:00
Vue.prototype.imService = new IMService();
Vue.prototype.a = 1;
2020-06-11 09:16:12 +08:00
App.mpType = 'app'
const app = new Vue({
...App
})
2020-07-16 10:02:57 +08:00
// 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)
2020-06-11 17:54:15 +08:00
app.$mount()