We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
期望progress组件的stroke-width属性支持rpx单位,微信已经支持了,但是打包成h5时是不支持的。
The text was updated successfully, but these errors were encountered:
给一个伪代码 demo,明确源码和产物的区别吧,明确一下区别,现在的 h5 是什么样的
Sorry, something went wrong.
<progress stroke-width="400rpx"></progress> 在微信小程序最终是<progress stroke-width="280px"></progress>有一个单位的转换(数值随便打的,不准确) 在H5最终是<div class="uni-progress-bar" ><div> 没有height属性;
<progress stroke-width="400rpx"></progress>
<progress stroke-width="280px"></progress>
<div class="uni-progress-bar" ><div>
这样写 <progress :stroke-width="400"></progress> 在h5最终是<div class="uni-progress-bar" style=" height: 400px;"><div>
<progress :stroke-width="400"></progress>
<div class="uni-progress-bar" style=" height: 400px;"><div>
就是期望这个属性能支持rpx这个单位
Successfully merging a pull request may close this issue.
期望progress组件的stroke-width属性支持rpx单位,微信已经支持了,但是打包成h5时是不支持的。
The text was updated successfully, but these errors were encountered: