vue遮罩层出现禁止穿透遮罩滚动页面

在这里插入图片描述
直接在标签上加@touchmove.prevent

<div class="img-view" @click="bigImg" @touchmove.prevent>
	<!-- 遮罩层 -->
	<div class="img-layer" @touchmove.prevent></div>
	<div class="img" @touchmove.prevent>
		<img :src="imgurl" @touchmove.prevent>
	</div>
</div>
发布了40 篇原创文章 · 获赞 0 · 访问量 976

猜你喜欢

转载自blog.csdn.net/HXH_csdn/article/details/104411893