demingshangjia/main.js

23 lines
515 B
JavaScript
Raw Normal View History

2020-06-11 09:16:12 +08:00
import Vue from 'vue'
import App from './App'
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
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()