在.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 }) }) }