UNPKG

@ark-ui/vue

Version:

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

18 lines (17 loc) 347 B
export interface RootProps { /** * The unique identifier of the machine. */ id?: string; /** * The ids of the scroll area elements */ ids?: Partial<{ root: string; viewport: string; content: string; scrollbar: string; thumb: string; }>; } export type RootEmits = {};