import { Ref } from 'vue'; import { useHeight } from './use-height'; import type { BEM } from '../utils/create/bem'; export function usePlaceholder(contentRef: Ref, bem: BEM) { const height = useHeight(contentRef); return (renderContent: () => JSX.Element) => (
{renderContent()}
); }