工作端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
618 B

import App from './App'
import uView from "uview-ui";
import store from "./store";
// import Vconsole from "vconsole";
Vue.use(uView);
// new Vconsole();
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
import { handleTree } from "@/utils/ruoyi";
Vue.config.productionTip = false
Vue.prototype.handleTree = handleTree
App.mpType = 'app'
// uni.$u.config.unit = 'rpx'
const app = new Vue({
store,
...App,
});
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return { store,
app
}
}
// #endif