浏览器总是自动填充
Elementui 禁止浏览器自动填充用户名密码
解决方案
// 禁用自动填充
document.getElementById('password').setAttribute('autocomplete', 'off');
<input type="password" autoComplete="off"/>
<el-input v-model="form.password" show-password auto-complete="new-password"></el-input>