From 9ead748d9193bab66166ab25fdfeff2115be0c1e Mon Sep 17 00:00:00 2001 From: johnsonwong666 <64689255+johnsonwong666@users.noreply.github.com> Date: Mon, 17 Jul 2023 09:54:00 +0800 Subject: [PATCH] fix(sticky): fix error in transition & sticky (#5483) --- packages/sticky/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sticky/index.ts b/packages/sticky/index.ts index 2f67c71e..7325289d 100644 --- a/packages/sticky/index.ts +++ b/packages/sticky/index.ts @@ -89,7 +89,7 @@ VantComponent({ } getRect(this, ROOT_ELEMENT).then((root) => { - if (!isDef(root)) { + if (!isDef(root) || (!root.width && !root.height)) { return; } if (offsetTop >= root.top) {