diff --git a/packages/core/useSwipe/index.ts b/packages/core/useSwipe/index.ts index abd20b5bd66..dbdd26ebab4 100644 --- a/packages/core/useSwipe/index.ts +++ b/packages/core/useSwipe/index.ts @@ -137,6 +137,8 @@ export function useSwipe( }, listenerOptions), useEventListener(target, 'touchmove', (e: TouchEvent) => { + if (e.touches.length !== 1) + return const [x, y] = getTouchEventCoords(e) updateCoordsEnd(x, y) if (!isSwiping.value && isThresholdExceeded.value)