import App from './App' import http from '@/service/http.js'; // #ifndef VUE3 import Vue from 'vue' import uView from 'uview-ui' Vue.use(uView) uni.$u.setConfig({ // 修改$u.config对象的属性 config: { // 修改默认单位为rpx,相当于执行 uni.$u.config.unit = 'rpx' unit: 'rpx' }, // 修改$u.props对象的属性 props: { // 修改radio组件的size参数的默认值,相当于执行 uni.$u.props.radio.size = 30 radio: { size: 16 } // 其他组件属性配置 // ...... } }) Vue.config.productionTip = false App.mpType = 'app' const app = new Vue({ ...App }) // 注册全局请求 Vue.prototype.$http = http; app.$mount() // #endif // #ifdef VUE3 import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) return { app } } // #endif