Merge pull request #6714 from Stawlie/checkbox-emit-fix

fix(Checkbox): Added "update:indeterminate" emit.
pull/6703/head
Tuğçe Küçükoğlu 2024-11-11 09:31:43 +03:00 committed by GitHub
commit 9a638b0312
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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.