Uni Popup等弹出组件滑动穿透问题
目录
1 uni小程序弹出组件滑动穿透问题解决方案
示例: @touchmove.stop.prevent="moveStop"
<view @touchmove.stop.prevent="moveStop">
<u-popup :show="show" class="approval-popup" mode="bottom" :round="18" @close="close">
</u-popup>
</view>
const moveStop = (e) => {
e.stopPropagation();
};