import App from './App' import i18n from './lang/i18n' //UDP import Vue from 'vue' import socket from './utils/socket.js' //Udp Vue.prototype.$socket = socket; Vue.config.productionTip = false // #ifndef VUE3 App.mpType = 'app' const app = new Vue({ i18n, ...App }) app.$mount() // #endif // #ifdef VUE3 import {createSSRApp} from 'vue' export function createApp() { const app = createSSRApp(App) app.use(i18n) return { app } } // #endif