mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Swipe): should not prevent touch move when reach edge (#10980)
This commit is contained in:
parent
71354f7742
commit
a02cfe9604
@ -307,10 +307,17 @@ export default defineComponent({
|
|||||||
touch.move(event);
|
touch.move(event);
|
||||||
|
|
||||||
if (isCorrectDirection.value) {
|
if (isCorrectDirection.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);
|
preventDefault(event, props.stopPropagation);
|
||||||
move({ offset: delta.value });
|
move({ offset: delta.value });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onTouchEnd = () => {
|
const onTouchEnd = () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user