import App from "./App"; import uviewPlus from "uview-plus"; import request from "./api/index"; import Vconsole from 'vconsole' const vConsole = new Vconsole() // #ifndef VUE3 import Vue from "vue"; import "./uni.promisify.adaptor"; Vue.config.productionTip = false; App.mpType = "app"; const app = new Vue({ ...App, }); app.$mount(); // #endif /*app.use(vConsole)*/ // #ifdef VUE3 import { createSSRApp } from "vue"; export function createApp() { const app = createSSRApp(App); app.use(uviewPlus); app.config.globalProperties.$request = request; uni.$u.config.unit = "rpx"; return { app, }; } // #endif