chore(components): add missing emits for docs

This commit is contained in:
Benjamin Canac
2024-06-28 16:19:06 +02:00
parent 7dd90f2bb7
commit fae627ed65
6 changed files with 17 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ export interface InputProps extends UseComponentIconsProps {
export interface InputEmits {
(e: 'blur', event: FocusEvent): void
(e: 'change', event: Event): void
(e: 'update:modelValue', payload: string | number): void
}
export interface InputSlots {