fix(Swipe): should not prevent touch move when reach edge (#10980)

This commit is contained in:
neverland 2022-08-27 15:44:06 +08:00 committed by GitHub
parent 71354f7742
commit a02cfe9604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -307,8 +307,15 @@ export default defineComponent({
touch.move(event);
if (isCorrectDirection.value) {
preventDefault(event, props.stopPropagation);
move({ offset: delta.value });
const isEdgeTouch =
!props.loop &&
((state.active === 0 && delta.value > 0) ||
(state.active === count.value - 1 && delta.value < 0));
if (!isEdgeTouch) {
preventDefault(event, props.stopPropagation);
move({ offset: delta.value });
}
}
}
};