vue项目中使用better-scroll @click事件在移动端失效

原因是你使用了better-scroll,默认它会阻止touch事件。所以在配置中需要加上如下属性就可以了

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

猜你喜欢

转载自blog.csdn.net/weixin_43756060/article/details/87858941