uni-app踩坑 - 模态框modal禁止滑动、禁止点击

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/PrisonersDilemma/article/details/101752615

话不多说,贴代码:

<view class="my-modal" @touchmove.stop.prevent="preventHandler">
	<view>...</view>
</view>
export default {
	methods: {
		preventHandler() {
			return
		}
	}
}

猜你喜欢

转载自blog.csdn.net/PrisonersDilemma/article/details/101752615