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() |