From a746ded63e1d076f2e99b386c86c56ea5be9ce15 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 13 Feb 2021 20:59:27 +0800 Subject: [PATCH] Revert "fix(@vant/use): useRect should always return DOMRect (#8147)" This reverts commit 0d0310d34e230115a0cd3389835a0fdd2109c66d. --- packages/vant-use/src/useRect/index.ts | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/packages/vant-use/src/useRect/index.ts b/packages/vant-use/src/useRect/index.ts index 01cb2f186..e02b96af4 100644 --- a/packages/vant-use/src/useRect/index.ts +++ b/packages/vant-use/src/useRect/index.ts @@ -12,12 +12,27 @@ export const useRect = ( if (isWindow(element)) { const width = element.innerWidth; const height = element.innerHeight; - return new DOMRect(0, 0, width, height); + + return { + top: 0, + left: 0, + right: width, + bottom: height, + width, + height, + }; } if (element && element.getBoundingClientRect) { return element.getBoundingClientRect(); } - return new DOMRect(0, 0, 0, 0); + return { + top: 0, + left: 0, + right: 0, + bottom: 0, + width: 0, + height: 0, + }; };