checkbox-button.d.ts 574 B

12345678910111213141516171819202122
  1. import { ElementUIComponent } from './component'
  2. /** Checkbox Button Component */
  3. export declare class ElCheckboxButton extends ElementUIComponent {
  4. /** Value of the checkbox when used inside a checkbox-group */
  5. label: string | number | boolean
  6. /** Value of the checkbox if it's checked */
  7. trueLabel: string | number
  8. /** Value of the checkbox if it's not checked */
  9. falseLabel: string | number
  10. /** Native 'name' attribute */
  11. name: string
  12. /** If the checkbox is disabled */
  13. disabled: boolean
  14. /** If the checkbox is checked */
  15. checked: boolean
  16. }