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.
 
 
 
 

22 lines
287 B

import Vue from 'vue'
import App from './App'
// 引入全局uView
import uView from '@/uni_modules/uview-ui'
import mixin from './common/mixin'
Vue.config.productionTip = false
App.mpType = 'app'
Vue.use(uView)
Vue.mixin(mixin)
const app = new Vue({
...App
})
app.$mount()