uni-app upx失效了
最近在uni-app使用vue3写项目时发现了一个upx失效了。无效代码<view class="pdx32 pdt32" style="height: 264upx;"><swiper indicator-dots autoplay><swiper-item><view><image src="/static/image/background
·
最近在uni-app使用vue3写项目时发现了一个upx失效了。
无效代码
<view class="pdx32 pdt32" style="height: 264upx;"> <swiper indicator-dots autoplay> <swiper-item> <view> <image src="/static/image/background/banner-1.png" mode="aspectFill"></image> </view> </swiper-item> </swiper> </view>
最终编译出来后upx竟然不会自动转换成rpx
解决办法
直接不用upx了 直接换成rpx
<view class="pdx32 pdt32" style="height: 264rpx;"> <swiper indicator-dots autoplay> <swiper-item> <view> <image src="/static/image/background/banner-1.png" mode="aspectFill"></image> </view> </swiper-item> </swiper> </view>
更多推荐
已为社区贡献3条内容
所有评论(0)