Solve the problem of automatic filling of input password type password

When logging in to different platforms, I often remember the passwords, which led to the discovery of the website that I developed during the development process. If there is an input password box, the browser will automatically fill in the password.

For the solution, refer to the 163 mailbox website and simply add autocomplete="new-password"

<el-input placeholder="请输入密码" v-model="userDialogFormList.lockAuthorizedPwd" type="password" class="user_input_width" autocomplete="new-password"></el-input>

Guess you like

Origin blog.csdn.net/cainiaochen3/article/details/88335568