Skip to content

Commit

Permalink
fix(VNumberInput): two-way binding model value
Browse files Browse the repository at this point in the history
fixes #19442
  • Loading branch information
yuwu9145 committed Mar 24, 2024
1 parent 7b587fb commit dfe48ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/labs/VNumberInput/VNumberInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
<input
ref={ inputRef }
type="number"
value={ model.value }
v-model={ model.value }
class={ fieldClass }
max={ props.max }
min={ props.min }
Expand Down

0 comments on commit dfe48ba

Please sign in to comment.