Reputation: 1009
is there a way to, only input integer values in a text field? I would set the input type to integer, but it isn't supported by vuejs.
<v-text-field
label="Regular"
type="number"
></v-text-field>
Upvotes: 1
Views: 2075
Reputation: 1616
You have to use vue internal directive v-model.number
<input v-model.number="age" type="number">
Upvotes: 3