import Vue from 'vue' import App from './App' Vue.config.productionTip = false App.mpType = 'app' import { myRequest } from './util/api.js' Vue.prototype.$myRequest = myRequest import uView from "uview-ui"; Vue.use(uView); //引入vuex import store from './store' //把vuex定义成全局组件 Vue.prototype.$store = store const app = new Vue({ ...App, //挂载 store }) app.$mount()