浏览器自动填充的功能在登录的时候挺好用的,但是在用户注册或管理的时候就不需要再自动填充了;
普通的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>
-
show-password:
可得到一个可切换显示隐藏的密码框