mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix(Swipe): should not prevent touch move when reach edge (#10980)
This commit is contained in:
parent
71354f7742
commit
a02cfe9604
@ -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 });
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user