Konstantin Schütte
Konstantin Schütte

Reputation: 1009

Textfield only integer values

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

Answers (1)

dganenco
dganenco

Reputation: 1616

You have to use vue internal directive v-model.number

<input v-model.number="age" type="number">

Upvotes: 3

Related Questions