jiku-ui
Version:
A Component Library for Vue.js.
14 lines (10 loc) • 312 B
TypeScript
import { HeinerUIComponent } from './component'
/** Dropdown Select Option Component */
export declare class HnOption extends HeinerUIComponent {
/** Value of option */
value: any
/** Label of option, same as value if omitted */
label: string
/** Whether option is disabled */
disabled: boolean
}