import Vue from 'vue' import App from './App' import store from './store' import socket from "./socket/socket.js" Vue.config.productionTip = false Vue.prototype._ = socket App.mpType = 'app' const app = new Vue({ ...App, store }) app.$mount()