@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
7 lines (6 loc) • 362 B
TypeScript
import { ComponentPublicInstance, Ref, ComputedRef } from 'vue';
export declare function useForwardExpose(): {
forwardRef: (ref: Element | ComponentPublicInstance | null) => void;
currentRef: Ref<Element | ComponentPublicInstance | null | undefined, Element | ComponentPublicInstance | null | undefined>;
currentElement: ComputedRef<HTMLElement>;
};