element/types/radio-button.d.ts

17 lines
351 B
TypeScript
Raw Normal View History

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
2017-10-18 18:31:03 +08:00
/** Native 'name' attribute */
name: string
}