mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-05 05:38:24 +08:00
14 lines
302 B
TypeScript
14 lines
302 B
TypeScript
|
import { ElementUIComponent } from './component'
|
||
|
|
||
|
/** Radio Button Component */
|
||
|
export declare class ElRadioButton extends ElementUIComponent {
|
||
|
/** The form input value */
|
||
|
value: string
|
||
|
|
||
|
/** The value of radio */
|
||
|
label: string | number
|
||
|
|
||
|
/** Whether radio is disabled */
|
||
|
disabled: boolean
|
||
|
}
|