How to preserve Pinia store value types when using Vuetify bound control? #2074
-
Beta Was this translation helpful? Give feedback.
Answered by
Liquidream
Mar 17, 2023
Replies: 1 comment
-
In case anyone else has a similar issue - this was solved by adding the <v-col>
<v-text-field label="Y-Pos" v-model.number="model.y" type="number"></v-text-field>
<v-text-field label="Height" v-model.number="model.height" type="number"></v-text-field>
</v-col> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Liquidream
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case anyone else has a similar issue - this was solved by adding the
.number
modifier (https://vuejs.org/guide/essentials/forms.html#number) to thev-model
, as so...