Skip to content

Commit 41a6063

Browse files
committed
fix(VFileInput): correct VField ref type
fixes #22309
1 parent 5d8ec63 commit 41a6063

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/vuetify/src/components/VFileInput/VFileInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export const VFileInput = genericComponent<VFileInputSlots>()({
129129
else return t(props.counterString, fileCount)
130130
})
131131
const vInputRef = ref<VInput>()
132-
const vFieldRef = ref<VInput>()
132+
const vFieldRef = ref<VField>()
133133
const inputRef = ref<HTMLInputElement>()
134134
const isActive = toRef(() => isFocused.value || props.active)
135135
const isPlainOrUnderlined = computed(() => ['plain', 'underlined'].includes(props.variant))

0 commit comments

Comments
 (0)