radio.d.ts 413 B

12345678910111213141516171819
  1. import { ElementUIComponent } from './component'
  2. /** Radio Component */
  3. export declare class ElRadio extends ElementUIComponent {
  4. /** The form input value */
  5. value: string
  6. /** The value of radio */
  7. label: string | number | boolean
  8. /** Whether radio is disabled */
  9. disabled: boolean
  10. /** Whether to add a border around Radio */
  11. border: boolean
  12. /** Native 'name' attribute */
  13. name: string
  14. }