You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
629 B
JavaScript

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