From 8b56a4dd23e836d0b440e7d3f2055ddca2a9fb1e Mon Sep 17 00:00:00 2001 From: chouchouji <70570907+chouchouji@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:18:00 +0800 Subject: [PATCH] fix(floating-bubble): update offset when the value changed (#12730) --- packages/vant/src/floating-bubble/FloatingBubble.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/vant/src/floating-bubble/FloatingBubble.tsx b/packages/vant/src/floating-bubble/FloatingBubble.tsx index 3d1a9a572..52e859c86 100644 --- a/packages/vant/src/floating-bubble/FloatingBubble.tsx +++ b/packages/vant/src/floating-bubble/FloatingBubble.tsx @@ -205,6 +205,7 @@ export default defineComponent({ watch( [windowWidth, windowHeight, () => props.gap, () => props.offset], updateState, + { deep: true }, ); const show = ref(true);