vue.js下移动端绑定click事件失效,pc端正常的问题

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

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

vue.js下移动端绑定click事件失效,pc端正常的问题

上一篇:android四大组件&helloworld例子


下一篇:IDEA更改Maven项目的webapp的版本号