import Vue from 'vue' import App from './App' Vue.config.productionTip = false /* 使用uView组件库 */ import uView from "uview-ui"; Vue.use(uView); App.mpType = 'app' const app = new Vue({ ...App }) app.$mount() // // #ifndef VUE3 // // #endif // // #ifdef VUE3 // import { createSSRApp } from 'vue' // export function createApp() { // const app = createSSRApp(App) // return { // app // } // } // // #endif