Skip to content

Commit

Permalink
fix(VNumberInput): forward VTextField properties
Browse files Browse the repository at this point in the history
fixes #20135
  • Loading branch information
yuwu9145 committed Aug 13, 2024
1 parent 93cef03 commit e1ed75f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/vuetify/src/labs/VNumberInput/VNumberInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { makeVTextFieldProps, VTextField } from '@/components/VTextField/VTextFi

// Composables
import { useForm } from '@/composables/form'
import { forwardRefs } from '@/composables/forwardRefs'
import { useProxiedModel } from '@/composables/proxiedModel'

// Utilities
Expand Down Expand Up @@ -345,6 +346,8 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
</VTextField>
)
})

return forwardRefs({}, vTextFieldRef)
},
})

Expand Down

0 comments on commit e1ed75f

Please sign in to comment.