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')
    },

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐