uni-app icon indicating copy to clipboard operation
uni-app copied to clipboard

A cross-platform framework using Vue.js

Results 605 uni-app issues
Sort by recently updated
recently updated
newest added
trafficstars

按照官方的教程用 uts 去调用鸿蒙 next 的支付宝相关插件,编译不通过, HBuidler版本号: 4.26.2024082213-alpha 附上 uts 代码: ``` import { Pay } from '@cashier_alipay/cashiersdk' export interface RequestPaymentOptions { orderInfo : string } export function requestPayment(options : RequestPaymentOptions)...

无后续反馈将自动关闭
uni 插件

### 项目信息 dcloudio版本:2.0.2-4010520240507001 项目类型:mp-weixin vue.config.js配置: ``` configureWebpack: { cache: { type: 'filesystem', // cacheDirectory: path.resolve(__dirname, '.temp_cache'), profile: true, }, } ``` 使用webpack的文件缓存 ### 问题描述 当使用webpack5的内置文件缓存时,会出现**usingComponents为空**的状态,文件内容如下 上述中使用过组件,但是usingComponent为空 ### 问题相关调研 当使用webpack5的内置缓存时会执行webpack/lib/Compilation.js ```...

vue2
编译问题

期望progress组件的stroke-width属性支持rpx单位,微信已经支持了,但是打包成h5时是不支持的。

enhancement
h5
内置 component

如果在微信一个分包中引入一个插件,目前uniapp没有区分各个端的分包插件。导致支付宝小程序每次都得注释对应的微信插件。才能上传成功 ![image](https://github.com/user-attachments/assets/b16a50d3-b8c0-4e5d-b0ce-b40f4ae3f749) 支付宝中已支持分包插件

mp-alipay

swiper组件建议增加一个 beforechange 事件 可以根据返回的值确定继续执行change还是终止。 以便于一些需要验证的情况时进行处理。

enhancement
内置 component

在这部分的代码中show-scrollbar的默认值是 true,文档描述的默认值是 false: https://github.com/dcloudio/uni-app/blob/720c03cfb1704611405d0be4808eff091b7b4541/packages/uni-components/src/vue/scroll-view/index.tsx#L52C1-L55C5 https://zh.uniapp.dcloud.io/component/scroll-view.html ![0](https://github.com/user-attachments/assets/523c7d19-7ad7-4e21-a258-940ece7014a4)

内置 component

我将globalStyle中的usingComponents应用去掉,为什么wxcomponents中的组件还在主包中

mp-weixin
不明确 vue版本或者运行平台

在组件中如果有同时使用动态插槽和作用域插槽同时使用 HBuilder X 能正常打包为微信小程序,但是在微信开发者工具中运行会报错,在h5访问是正常的。已经在 `manifest.json` 文件中配置了 `"scopedSlotsCompiler": "augmented"` 和 `"slotMultipleInstance": true` 伪代码如下: ``` 默认内容 ``` 项目是通过 HBuilder X 创建的uni-app 默认模板使用的是 vue2,HBuilder X 版本号为4.29.2024093009 能够复现问题的代码如下: [uni-app-slot.zip](https://github.com/user-attachments/files/17321162/uni-app-slot.zip)

mp-weixin
vue2
提供了复现方案

项目cli:vue2 问题:uniapp编译到小红书后,发现分享聊天onShareChat无法自定义标题和图片,分享出去的是小红书的默认值小程序名称和logo,但分享朋友圈可以的,一样的代码,不一样的结果。 代码: ![image](https://github.com/user-attachments/assets/b5704023-82b7-4dbb-b411-6055461830d8) 编译结果: ![image](https://github.com/user-attachments/assets/8df8767b-efad-4e1d-af48-c29ba9b71d1f) 期望:希望能够正常的自定义标题和图片

mp
等待用户反馈
uniapp功能需求

HBuiler 版本为4.29 支付代码如下: ``` uni.requestPayment({ provider: 'alipay', orderInfo: orderInfo, success: (res) => { var rawdata = JSON.parse(res.rawdata); showToast("支付成功") getVipCardInfo() console.log("支付成功", JSON.stringify(rawdata)); }, fail: (error) => { console.log('支付失败:' , JSON.stringify(error)); },...

bug