Fixed #4219 - Password: add "@change" event

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-02 12:27:43 +03:00
parent 5782793740
commit 880c9ce6c3
3 changed files with 22 additions and 1 deletions

View file

@ -290,6 +290,11 @@ export interface PasswordEmits {
* @param {string} value - New value.
*/
'update:modelValue'(value: string): void;
/**
* Callback to invoke on value change.
* @param {Event} event - Browser event.
*/
change(event: Event): void;
}
/**