吉福庄APP,基于若依原版开发
zhangmeng
2024-04-19 99af75c6c0bbc04e73fb71fd39ac41cabb89447c
commit | author | age
efef1c 1 import Vue from 'vue'
Z 2 import App from './App'
3 import store from './store' // store
4 import plugins from './plugins' // plugins
5 import './permission' // permission
6 Vue.use(plugins)
7
8 Vue.config.productionTip = false
9 Vue.prototype.$store = store
10
11 App.mpType = 'app'
12
13 const app = new Vue({
14   ...App
15 })
16
17 app.$mount()