UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

15 lines (14 loc) 499 B
import { ComputedRef } from 'vue'; export interface RenderStrategyProps { /** * Whether to enable lazy mounting * @default false */ lazyMount?: boolean; /** * Whether to unmount on exit. * @default false */ unmountOnExit?: boolean; } export declare const RenderStrategyPropsProvider: (opts: ComputedRef<RenderStrategyProps>) => void, useRenderStrategyProps: (fallback?: ComputedRef<RenderStrategyProps> | undefined) => ComputedRef<RenderStrategyProps>;