UNPKG

@layui/layui-vue

Version:

a component library for Vue 3 base on layui-vue

13 lines (12 loc) 299 B
export type LaySegmentedItemType = { label: string; slot?: string; [key: string]: any; }; export interface LaySegmentedProps { options: LaySegmentedItemType[] | string[]; modelValue: string; size?: "lg" | "md" | "sm"; name?: string; disabled?: boolean; }