Skip to content

Commit

Permalink
feat: add support for File type in Input component
Browse files Browse the repository at this point in the history
  • Loading branch information
Dam998 authored Dec 5, 2024
1 parent 8a24d11 commit 4898a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/www/src/lib/registry/default/ui/input/Input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { cn } from '@/lib/utils'
import { useVModel } from '@vueuse/core'
const props = defineProps<{
defaultValue?: string | number
modelValue?: string | number
defaultValue?: string | number | File
modelValue?: string | number | File
class?: HTMLAttributes['class']
}>()
Expand Down

0 comments on commit 4898a96

Please sign in to comment.