import App from './App';
import store from './store';
// #ifndef VUE3
import Vue from 'vue';
import './uni.promisify.adaptor';
Vue.config.productionTip = false;
App.mpType = 'app';
const app = new Vue({
store, // 挂载 Vuex store 到 Vue 实例上
render: h => h(App)
});
app.$mount();
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue';
import uviewPlus, {
setConfig
} from 'uview-plus';
const app = createSSRApp(App);
// 调用 setConfig 方法进行配置
setConfig({
config: {
// 修改默认单位为 rpx
unit: 'rpx'
},
props: {
radio: {
// 修改 radio 组件的 size 参数的默认值
size: 15
},
// 其他组件属性配置
// ......
}
});
// 使用 uviewPlus 插件
app.use(uviewPlus);
export function createApp() {
// 使用 Vuex store
app.use(store);
return {
app
};
}
// #endif
1 个回复
2***@qq.com
有解决办法吗