fix(Checkbox): Added "update:indeterminate" emit.

pull/6765/head
Вдовин Никита Анатольевич 2024-11-02 11:17:19 +03:00
parent 251e2f8293
commit 104c1f88b4
1 changed files with 5 additions and 0 deletions

View File

@ -262,6 +262,11 @@ export interface CheckboxEmitsOptions {
* @param {*} value - New value.
*/
'update:modelValue'(value: any): void;
/**
* Emitted when the "indeterminate" changes.
* @param {false} value - New value.
*/
'update:indeterminate'(value: false): void;
/**
* Emitted when the value changes in uncontrolled mode.
* @param {*} value - New value.