You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/types/checkbox/checkbox-group.d.ts

36 lines
908 B

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from "../component";
export declare class CheckboxGroup extends AntdComponent {
/**
* Default selected value
* @type string[]
*/
defaultValue: string[];
/**
* Disable all checkboxes
* @default false
* @type boolean
*/
disabled: boolean;
/**
6 years ago
* Specifies options, you can customize `label` with slot = "label" slot-scope = "option"
* @type Array<string | { label: string, value: string, disabled?: boolean, onChange?: Function }>
*/
options: Array<
| string
| { label: string; value: string; disabled?: boolean; onChange?: Function }
>;
/**
* Used for setting the currently selected value.
* @type string[]
*/
value: string[];
}