2024-10-27 00:26:19 +08:00
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
import App from './App'
|
|
|
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
|
|
|
|
App.mpType = 'app'
|
|
|
|
|
|
|
|
|
|
// 引入全局uView
|
|
|
|
|
import uView from 'uview-ui'
|
|
|
|
|
Vue.use(uView);
|
|
|
|
|
|
2024-10-31 21:24:54 +08:00
|
|
|
|
// 引入全局加载
|
|
|
|
|
import Loading from '@/components/loading/index.vue'
|
|
|
|
|
Vue.component("Loading", Loading)
|
|
|
|
|
|
2024-10-27 00:26:19 +08:00
|
|
|
|
import * as Util from '@/utils/utils.js'
|
|
|
|
|
Vue.prototype.$util = Util;
|
|
|
|
|
|
|
|
|
|
Vue.prototype.$api = {};//定义api对象
|
|
|
|
|
|
2024-10-31 21:24:54 +08:00
|
|
|
|
// 此处为演示vuex使用,非uView的功能部分
|
|
|
|
|
import store from '@/store'
|
|
|
|
|
|
|
|
|
|
// 引入uView提供的对vuex的简写法文件
|
|
|
|
|
let vuexStore = require('@/store/$u.mixin.js')
|
|
|
|
|
|
|
|
|
|
Vue.mixin(vuexStore)
|
|
|
|
|
|
2024-10-27 00:26:19 +08:00
|
|
|
|
const app = new Vue({
|
2024-10-31 21:24:54 +08:00
|
|
|
|
store,
|
2024-10-27 00:26:19 +08:00
|
|
|
|
...App
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
|
|
|
|
|
import httpInterceptor from '@/common/http.interceptor.js'
|
|
|
|
|
Vue.use(httpInterceptor, app)
|
|
|
|
|
|
|
|
|
|
// http接口API抽离,免于写url或者一些固定的参数
|
|
|
|
|
import httpApi from '@/common/http.api.js'
|
|
|
|
|
Vue.use(httpApi, app)
|
|
|
|
|
|
|
|
|
|
// 路由跳转拦截
|
|
|
|
|
import routerInterceptor from '@/common/routerInterceptor.js'
|
|
|
|
|
Vue.use(routerInterceptor, app)
|
|
|
|
|
|
|
|
|
|
app.$mount()
|