| 123456789101112131415161718 |
- import App from './App'
- import Vue from 'vue'
- import store from './store'
- import { request } from './utils/api.js'
- Vue.config.productionTip = false
- Vue.prototype.$store = store
- Vue.prototype.$request = request
- Vue.prototype.$config = require('@/config.js').default
- App.mpType = 'app'
- const app = new Vue({
- store,
- render: h => h(App)
- })
- app.$mount()
|