Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
问题如上; 移动端滑动滚动过快报了这个错 解决方法是给html加以下属性
html{ touch-action: none }
不过需要注意的是,添加了 touch-action: none之后页面滚动可能有问题,慎用