element3
Version:
A Component Library for Vue3
12 lines (9 loc) • 309 B
TypeScript
import { ElementUIComponent } from './component'
export const ElOptionGroup: IOptionGroup
/** Dropdown Select Option Group Component */
interface IOptionGroup extends ElementUIComponent {
/** Name of the group */
label: string
/** Whether to disable all options in this group */
disabled: boolean
}