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.
28 lines
588 B
28 lines
588 B
2 years ago
|
import Vue from 'vue'
|
||
|
import App from './App'
|
||
|
import store from './store'
|
||
|
import filter from '@/common/filters.js';
|
||
|
|
||
|
import util from '@/common/utils'
|
||
|
Vue.prototype.$util = util
|
||
|
|
||
|
// 引入全局uView
|
||
|
import uView from '@/uni_modules/uview-ui'
|
||
|
Vue.use(uView)
|
||
|
|
||
|
Vue.prototype.$store = store
|
||
|
Vue.config.productionTip = false
|
||
|
|
||
|
App.mpType = 'app'
|
||
|
|
||
|
const app = new Vue({
|
||
|
store,
|
||
|
...App
|
||
|
})
|
||
|
|
||
|
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
|
||
|
import httpInterceptor from '@/common/uview.interface.js'
|
||
|
Vue.use(httpInterceptor, app)
|
||
|
|
||
|
app.$mount()
|