import Vue from 'vue' import App from './App' import store from './store' // store import plugins from './plugins' // plugins import './permission' // permission import { getDicts } from "@/api/system/dict/data" import uView from "uview-ui"; Vue.use(uView); Vue.use(plugins) Vue.config.productionTip = false Vue.prototype.$store = store Vue.prototype.getDicts = getDicts App.mpType = 'app' //为了兼容echarts在移动端的点击事件 window.wx={} const app = new Vue({ ...App }) app.$mount()