chore(Slider): improve update:modelValue event signature

This commit is contained in:
Benjamin Canac
2024-07-31 11:22:56 +02:00
parent 007a0cf85e
commit 0635c5434c
3 changed files with 6 additions and 5 deletions

View File

@@ -32,9 +32,9 @@ export interface TextareaProps {
}
export interface TextareaEmits {
(e: 'update:modelValue', payload: string | number): void
(e: 'blur', event: FocusEvent): void
(e: 'change', event: Event): void
(e: 'update:modelValue', payload: string | number): void
}
export interface TextareaSlots {