Vue下 touchstart touchend 事件无效失效解决办法

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

在这里插入图片描述


版权声明:本文为bydongxin原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。