Uni Popup等弹出组件滑动穿透问题

示例: @touchmove.stop.prevent="moveStop"

js

<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();
};

相关内容