Skip to content

Commit cf02b99

Browse files
cszhjhilyaliao
andauthored
fix(useMouseInElement): correctly update elementX and elementY (#4846)
Co-authored-by: IlyaL <ilyaliao324@gmail.com>
1 parent 99065db commit cf02b99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/useMouseInElement/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function useMouseInElement(
8989
|| elX < 0 || elY < 0
9090
|| elX > width || elY > height
9191

92-
if (handleOutside) {
92+
if (handleOutside || !isOutside.value) {
9393
elementX.value = elX
9494
elementY.value = elY
9595
}

0 commit comments

Comments
 (0)