chore: improve useHeight (#10197)

This commit is contained in:
neverland 2022-01-16 16:33:45 +08:00 committed by GitHub
parent 32aaed02db
commit 0de7b9c0b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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