element-ui
Version:
A Component Library for Vue.js.
17 lines (12 loc) • 351 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
/** Native 'name' attribute */
name: string
}