You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
611 B
25 lines
611 B
import Vue from 'vue'
|
|
import App from './App'
|
|
import store from '@/store'
|
|
import uView from "uview-ui";
|
|
Vue.use(uView);
|
|
let vuexStore = require('@/store/$u.mixin.js')
|
|
|
|
Vue.mixin(vuexStore)
|
|
Vue.config.productionTip = false
|
|
|
|
App.mpType = 'app'
|
|
const app = new Vue({
|
|
store,
|
|
...App
|
|
})
|
|
|
|
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
|
|
import httpInterceptor from '@/http/interceptor.js';
|
|
Vue.use(httpInterceptor, app);
|
|
|
|
// http接口API抽离,免于写url或者一些固定的参数
|
|
import httpApi from '@/http/api.js';
|
|
Vue.use(httpApi, app);
|
|
|
|
app.$mount()
|
|
|