UNPKG

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