1 Star 0 Fork 103

BlackCat/uv-ui

forked from Lee/uv-ui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
Lee 提交于 2023-06-08 21:40 . checkbox优化
import App from './App'
// import uvUI from '@/uni_modules/uv-ui-tools'
// import { Request } from '@/util/request/index'
// uni.$uv.setConfig({
// config: {
// // 修改默认单位为rpx,相当于执行 uni.$uv.config.unit = 'rpx'
// unit: 'px'
// },
// props: {
// text: {
// color: {
// default: 'red'
// }
// }
// }
// })
// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
App.mpType = 'app'
// Vue.use(uvUI,{mpShare:true});
try {
function isPromise(obj) {
return (!!obj && (typeof obj === "object" || typeof obj === "function") && typeof obj.then === "function");
}
// 统一 vue2 API Promise 化返回格式与 vue3 保持一致
uni.addInterceptor({
returnValue(res) {
if (!isPromise(res)) {
return res;
}
return new Promise((resolve, reject) => {
res.then((res) => {
if (res[0]) {
reject(res[0]);
} else {
resolve(res[1]);
}
});
});
},
});
} catch (error) {}
const app = new Vue({
...App
})
app.$mount()
// 引入请求封装
// Request(app)
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
// 引入请求封装
// Request(app)
// app.use(uvUI,{mpShare:true})
return {
app
}
}
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/blackSP/uv-ui.git
git@gitee.com:blackSP/uv-ui.git
blackSP
uv-ui
uv-ui
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385