本来没打算写这个,因为之前发现click不生效可以使用touchstart去代替,可是后来发现使用了touchstart后不能在滑动了,其实可以滑动,但是使用click的目的是为了点击后跳转到首页,所以在刚刚准备滑动时,就被跳转到了首页。
于是乎,搜索了一下,发现问题在于使用了一个插件:better-scroll
只需要做如下配置即可
this.scroll=new BScroll(this.$refs.content,{
mouseWheel: true, click: true, tap: true
})