pyt
2025-03-13 298fbe50e4bc2f477ffa20175a7dd5c41fc0942b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
Vue.config.productionTip = false
Vue.prototype.$store = store
Vue.use(uView)
Vue.component('CustomPopup', CustomPopup)
 
App.mpType = 'app'
const app = new Vue({
    ...App
})
app.$mount()