石广澎
2025-11-17 8771da2ccf6f7c3fd2a8c89a1a0e230c6386db7f
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
26
import App from './App'
import Vue from 'vue'
/*import Vconsole from 'vconsole'
new Vconsole();*/
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()