element3
Version:
A Component Library for Vue3
15 lines (11 loc) • 333 B
TypeScript
import { ElementUIComponent } from './component'
export const ElOption: IOption
/** Dropdown Select Option Component */
interface IOption extends ElementUIComponent {
/** Value of option */
value: any
/** Label of option, same as value if omitted */
label: string
/** Whether option is disabled */
disabled: boolean
}