fix: useHeight may get the wrong height (#10195)

This commit is contained in:
yuhengshen 2022-01-16 16:28:31 +08:00 committed by GitHub
parent be2a401d23
commit 32aaed02db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,15 @@ import { Ref, ref, onMounted, nextTick } from 'vue';
export const useHeight = (element: Element | Ref<Element | undefined>) => {
const height = ref<number>();
onMounted(() =>
onMounted(() => {
nextTick(() => {
height.value = useRect(element).height;
})
);
});
// https://github.com/youzan/vant/issues/10131
setTimeout(() => {
height.value = useRect(element).height;
}, 100);
});
return height;
};