移动端
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.

24 lines
417 B

2 months ago
import Vue from 'vue'
2 months ago
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
2 months ago
// 引入uView
import uView from '@/uni_modules/uview-ui'
2 months ago
// 挂载全局对象
Vue.use(plugins).use(uView)
2 months ago
Vue.config.productionTip = false
2 months ago
// 挂载vuex
Vue.prototype.$store = store
2 months ago
App.mpType = 'app'
const app = new Vue({
...App
})
2 months ago
app.$mount()