vue 移动端在div上绑定click事件 失效

在.vue的文件中使用了better-scroll,在div标签上绑定click事件后,无效。

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

mounted(){
            this.$nextTick(() => {
                let bscrollDom = this.$refs.bscroll;
                this.aBScroll = new BScroll(bscrollDom,{ mouseWheel: true, click: true, tap: true })
            })
        }

 

上一篇:better-scroll


下一篇:flutter-Dart学习之变量