董国庆
2025-03-19 5b37f36231c54f9d65b4b6260e9daa50f09d323f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import App from './App'
import Vue from 'vue'
import store from '@/store/index.js'
import uView from '@/uni_modules/uview-ui'
import './uni.promisify.adaptor'
import CustomPopup from '@/components/customPopup.vue'
const jweixin = require('jweixin-module')
 
Vue.config.productionTip = false
Vue.prototype.$store = store
Vue.prototype.$jweixin = jweixin
Vue.use(uView)
Vue.component('CustomPopup', CustomPopup)
 
App.mpType = 'app'
const app = new Vue({
    ...App
})
app.$mount()