import App from './App' import pubFn from './common/js/publicFn.js' import store from "./store"; import Vue from 'vue' Vue.config.productionTip = false Vue.prototype.$store = store; App.mpType = 'app' const app = new Vue({ ...App }) app.$mount()