import { useRect } from '@vant/use'; import { Ref, ref, onMounted, nextTick } from 'vue'; export const useHeight = (element: Element | Ref) => { const height = ref(); onMounted(() => { nextTick(() => { height.value = useRect(element).height; }); }); return height; };