石广澎
2024-08-30 eb07779b6fbae528c8b3620aeba849a09b23bff2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import App from './App'
import Vue from 'vue'
 
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
 
import * as utils from '@/common/util.js'
Vue.prototype.$utils = utils
 
Vue.config.productionTip = false
App.mpType = 'app'
 
uni.$u.props.text.color = '#333333'
// import store from '@/store/index.js'
// Vue.prototype.$store = store
 
Vue.config.ignoredElements.push('wx-open-launch-weapp')
 
const app = new Vue({
    ...App
})
 
require('@/common/http.interceptor.js')(app)
 
app.$mount()