0👍
you have to use “form” tag in your form field and set autocomplete for both of form and password input tags.
<form action="" autocomplete="off">
<label for="username">username:</label>
<input type="text" id="username" name="username"><br><br>
<label for="pass">Last name:</label>
<input type="password" id="pass" name="pass" autocomplete="off"><br><br>
<input type="submit">
</form>
- [Vuejs]-Vuetify date picker doesn't save the correct date if i type it in my text field
- [Vuejs]-Vue 2: URL not refreshing properly the second time
Source:stackexchange.com