[Vuejs]-How to disabled autocomplete input type password? not worknig autocomplete="off"

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>

Leave a comment