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.

18 lines
393 B

1 week ago
import Vue from 'vue'
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
Vue.use(plugins)
1 week ago
// main.js
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
1 week ago
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
1 week ago
...App
1 week ago
})
1 week ago
app.$mount()