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

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

mounted () {
	this.scroll = new BScroll(this.$refs.wrapper, { mouseWheel: true, click: true, tap: true })
}
原文地址:https://www.cnblogs.com/hukuangjie/p/11399934.html