
直接在标签上加@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>
本文介绍了一种在Vue.js中使用@touchmove.prevent阻止元素上的触摸移动事件的方法,这对于创建响应式网页和移动应用非常有用。

直接在标签上加@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>

被折叠的 条评论
为什么被折叠?