vue移动端绑定click事件失效问题

原因可能是你使用了better-scroll,默认它会阻止touch事件。所以在配置中需要加上click: true
例:

mounted(){
    this.scroll=new Bscroll(this.$refs.wrapper, { mouseWheel: true, click: true, tap: true })
  }

猜你喜欢

转载自blog.csdn.net/eva_lu/article/details/81363562