feat: add support for File type in Input component

This commit is contained in:
Damiano 2024-12-05 10:22:47 +01:00 committed by GitHub
parent 8a24d11a65
commit 4898a96fe0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,8 +4,8 @@ import { cn } from '@/lib/utils'
import { useVModel } from '@vueuse/core' import { useVModel } from '@vueuse/core'
const props = defineProps<{ const props = defineProps<{
defaultValue?: string | number defaultValue?: string | number | File
modelValue?: string | number modelValue?: string | number | File
class?: HTMLAttributes['class'] class?: HTMLAttributes['class']
}>() }>()