[Vuejs]-Disable autocomplete on Vuetify v-text-field

2👍

use autocomplete="off" in v-text-field:

<v-text-field
   autocomplete="off"
/>

1👍

autocomplete="null" worked for me in v-text-field
(but autocomplete="off" didnt…)

<v-text-field
  autocomplete="null"
/>

Leave a comment