123456789101112131415161718 |
- import Vue from 'vue'
- import App from './App'
- import { myRequest } from 'util/api.js'
- Vue.config.productionTip = false
- import store from './store'
- Vue.prototype.$store = store
- App.mpType = 'app'
- Vue.prototype.$myRequest = myRequest
- const app = new Vue({
- ...App,
- store
- })
- app.$mount()
|