UNPKG

351 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Radio Button Component */
4export declare class ElRadioButton extends ElementUIComponent {
5 /** The form input value */
6 value: string
7
8 /** The value of radio */
9 label: string | number
10
11 /** Whether radio is disabled */
12 disabled: boolean
13
14 /** Native 'name' attribute */
15 name: string
16}