radio-button.d.ts 351 B

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