Files

18 lines
311 B
JavaScript
Raw Permalink Normal View History

2023-08-30 09:44:26 +08:00
import Vue from 'vue'
2023-09-05 16:14:07 +08:00
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
Vue.use(plugins)
2023-08-30 09:44:26 +08:00
Vue.config.productionTip = false
2023-09-05 16:14:07 +08:00
Vue.prototype.$store = store
2023-08-30 09:44:26 +08:00
App.mpType = 'app'
2023-09-05 16:14:07 +08:00
2023-08-30 09:44:26 +08:00
const app = new Vue({
...App
})
2023-09-05 16:14:07 +08:00
app.$mount()