diff --git a/packages/vant/src/floating-panel/FloatingPanel.tsx b/packages/vant/src/floating-panel/FloatingPanel.tsx index b4d9b2002..c671398bd 100644 --- a/packages/vant/src/floating-panel/FloatingPanel.tsx +++ b/packages/vant/src/floating-panel/FloatingPanel.tsx @@ -14,16 +14,15 @@ import { makeArrayProp, makeNumericProp, truthProp, + windowHeight, } from '../utils'; // Composables -import { useWindowSize, useEventListener } from '@vant/use'; +import { useEventListener } from '@vant/use'; import { useLockScroll } from '../composables/use-lock-scroll'; import { useTouch } from '../composables/use-touch'; import { useSyncPropRef } from '../composables/use-sync-prop-ref'; -const { height: windowHeight } = useWindowSize(); - export const floatingPanelProps = { height: makeNumericProp(0), anchors: makeArrayProp(),