vue.js中用v-for遍历出的li中的@click事件在移动端无效

使用的better-scroll默认会阻止touch事件。所以在配置中需要加上click: true


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

猜你喜欢

转载自blog.csdn.net/qq_35142645/article/details/89886474
今日推荐