'Disable autocomplete on Vuetify v-text-field
I'm using Vuetify's v-text-field, and I want to disable autocomplete. I have autocomplete="false"
, which is the correct syntax as I have seen online, but I still get autocomplete suggestions. Any suggestions?
<v-text-field
outlined
placeholder="Search"
autocomplete="false"
v-model="searchBar"
@input="search()"
:hint="searchResults.length + ' ' + this.searchResultTag + ' found'"
></v-text-field>
Solution 1:[1]
autocomplete="null" worked for me in v-text-field
(but autocomplete="off" didnt...)
<v-text-field
autocomplete="null"
/>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Jérôme Cheneaux |