1
<view @touchmove.stop.prevent></view>
1
2
3
moveScroll() {
console.log('禁止滚动')
}

在子组件的最外层 view 标签中加上 @touchmove.stop.prevent 就可以禁止页面滚动,当然滚动条也就没有了。但是这并不影响父组件的滚动,这是我想要的效果