Vue下 touchstart touchend 事件无效失效解决办法
Vue下 touchstart touchend 事件无效失效解决办法<van-button:disabled="isLoading"plaintype="info"@touchstart.native.prevent="touchstart"@touchend.native.prevent="touchend"style="width:40%;height: 40
·
Vue下 touchstart touchend 事件无效失效解决办法
<van-button
:disabled="isLoading"
plain
type="info"
@touchstart.native.prevent="touchstart"
@touchend.native.prevent="touchend"
style="width:40%;height: 40px;"
round>对比原图
</van-button>
@touchstart.native.prevent=“touchstart”
@touchend.native.prevent=“touchend”
增加 .native.prevent
touchstart() {
console.log('touchstart')
},
touchend() {
console.log('touchend')
},
更多推荐
所有评论(0)