diff --git a/packages/vant/src/composables/use-height.ts b/packages/vant/src/composables/use-height.ts index a6e650832..287bde84c 100644 --- a/packages/vant/src/composables/use-height.ts +++ b/packages/vant/src/composables/use-height.ts @@ -1,7 +1,10 @@ import { useRect } from '@vant/use'; import { Ref, ref, onMounted, nextTick } from 'vue'; -export const useHeight = (element: Element | Ref) => { +export const useHeight = ( + element: Element | Ref, + withSafeArea?: boolean +) => { const height = ref(); const setHeight = () => { @@ -10,8 +13,16 @@ export const useHeight = (element: Element | Ref) => { onMounted(() => { nextTick(setHeight); + + // If the element is using safe area, the system will not return the correct height on page load. + // So we need to wait for the height to be set. // https://github.com/youzan/vant/issues/10131 - setTimeout(setHeight, 100); + // https://stackoverflow.com/questions/64891541 + if (withSafeArea) { + for (let i = 1; i <= 3; i++) { + setTimeout(setHeight, 100 * i); + } + } }); return height; diff --git a/packages/vant/src/composables/use-placeholder.tsx b/packages/vant/src/composables/use-placeholder.tsx index f2c70f2bc..849550177 100644 --- a/packages/vant/src/composables/use-placeholder.tsx +++ b/packages/vant/src/composables/use-placeholder.tsx @@ -3,7 +3,7 @@ import { useHeight } from './use-height'; import type { BEM } from '../utils/create'; export function usePlaceholder(contentRef: Ref, bem: BEM) { - const height = useHeight(contentRef); + const height = useHeight(contentRef, true); return (renderContent: () => JSX.Element) => (