element UI的form 禁止浏览器自动填充用户名或密码

浏览器会默认将已保存的账号密码 填充到input type值为password的输入框内,如果在登录页面,这是期望的,但是如果在注册页面、新增账号等页面,这就是超出需求了,

element UI的form 禁止浏览器自动填充用户名或密码_第1张图片
普通的form表单内的input设置autoComplete="off"就可以了

<input type="password" autoComplete="off"/>

但是在element UI里面设置autoComplete="off"是不生效的,需要设置为new-password

<el-input v-model="form.password" show-password auto-complete="new-password"></el-input>

转自:https://blog.csdn.net/qq_41725450/article/details/106237356

你可能感兴趣的:(elementui)