Skip to content

Commit

Permalink
fix(VFileInput): update:modelValue emit value
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed May 1, 2024
1 parent 2877ba8 commit 002ae8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VFileInput/VFileInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const VFileInput = genericComponent<VFileInputSlots>()({
'click:control': (e: MouseEvent) => true,
'mousedown:control': (e: MouseEvent) => true,
'update:focused': (focused: boolean) => true,
'update:modelValue': (files: File[]) => true,
'update:modelValue': (files: File | File[]) => true,
},

setup (props, { attrs, emit, slots }) {
Expand Down

0 comments on commit 002ae8d

Please sign in to comment.