Skip to content

Commit

Permalink
Fix v-model for RangeController
Browse files Browse the repository at this point in the history
  • Loading branch information
super16 committed Jun 21, 2024
1 parent f4c16c9 commit 857215d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RangeController.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const model = defineModel<number>();
{{ controllerLabel }}
<input
:id="controllerId"
v-model="model"
v-model.number="model"
:max="max"
:min="min"
step="1"
Expand Down

0 comments on commit 857215d

Please sign in to comment.