其他分享
首页 > 其他分享> > vue长按事件

vue长按事件

作者:互联网

html

<div class="test" @touchstart="gtouchstart()">按啊</div>

js

data(){
return {
    timeOutEvent: 0 ,// 长按事件定时器
  }
}
methods: { gtouchstart () { // 开始触摸 this.timeOutEvent = setTimeout(() => { // 长按2秒 this.timeOutEvent = 0 alert('ggg') }, 2000) }, }

 

标签:vue,return,methods,timeOutEvent,2000,事件,gtouchstart
来源: https://www.cnblogs.com/luguankun/p/12791793.html