在使用elementui的输入框时,如果不想浏览器自动弹出以保存密码的提示,可以用一下方法解决:
方案1:使用auto-complete="new-password"
<el-input type="text" auto-complete="new-password" />
方法2:在使用的input框后面,再增加一个input框,并定位到页面看不到的位置。
<el-input type="text" class="not-show" />
css代码:
.not-show {
position: absolute;
top: -20;
left: 0;
width: 0;
height: 0;
}
这样就可以使输入框不展示保存的账号密码了