import Vue from 'vue' import App from './App' import {request} from './Lib/Request'; import store from './store' //vuex Vue.prototype.$store = store //注册https请求到全局 Vue.prototype.$request = request; Vue.config.productionTip = false App.mpType = 'app' const app = new Vue({ store, ...App }) app.$mount()