You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
437 B
JavaScript
23 lines
437 B
JavaScript
1 month ago
|
import Vue from 'vue'
|
||
|
import App from './App'
|
||
|
import store from './store' // store
|
||
|
import plugins from './plugins' // plugins
|
||
|
import './permission' // permission
|
||
|
import uView from 'uview-ui'
|
||
|
import VueCompositionAPI from '@vue/composition-api'
|
||
|
Vue.use(uView)
|
||
|
|
||
|
Vue.use(plugins)
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
Vue.prototype.$store = store
|
||
|
Vue.use(VueCompositionAPI)
|
||
|
|
||
|
App.mpType = 'app'
|
||
|
|
||
|
const app = new Vue({
|
||
|
...App,
|
||
|
})
|
||
|
|
||
|
app.$mount()
|