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
396 B

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