fix(Swipe): should prevent touchmove event when swiping (#9918)

This commit is contained in:
neverland 2021-11-23 20:57:34 +08:00 committed by GitHub
parent d0260cf990
commit 102a3e4b4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -210,8 +210,16 @@ export default createComponent({
this.touchMove(event);
if (this.isCorrectDirection) {
// if user starting to touchmove, prevent the event bubbling to
// avoid affecting the parent components
const shouldPrevent =
this.isCorrectDirection ||
this.offsetY > this.offsetX === this.vertical;
if (shouldPrevent) {
preventDefault(event, this.stopPropagation);
}
if (this.isCorrectDirection) {
this.move({ offset: this.delta });
}
},