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