1 Star 0 Fork 0

zhang/uni-app+uv-ui模版

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
zhang 提交于 2024-01-26 15:06 . 完善
import App from './App';
import uvUI from '@/uni_modules/uv-ui-tools'
import {
Request
} from '@/util/request/index';
import '@/router/index.js';
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
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
})
Vue.use(uvUI);
app.$mount()
Request(app)
// #endif
// 在vue3的环境下
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
Request(app)
app.use(uvUI);
return {
app
}
}
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhangshufen/uni-app-uv-ui-template.git
[email protected]:zhangshufen/uni-app-uv-ui-template.git
zhangshufen
uni-app-uv-ui-template
uni-app+uv-ui模版
master

搜索帮助