[Vuejs]-How can I place two textfields on the same row with Vuetify?

0👍

Wrap the v-cols with <v-row/>.

<v-row>
  <v-col cols="12" sm="6" md="3">...</v-col>
  <v-col cols="12" sm="6" md="3">...</v-col>
</v-row>

enter image description here

Demo

Leave a comment