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

@@ -34,9 +34,9 @@ export interface InputProps extends UseComponentIconsProps {
}
export interface InputEmits {
(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 InputSlots {