登录密码 不自动保存
2021-03-15 本文已影响0人
无名程序猿
第一步:
注:需要在样式文件夹中引入PasswordEntry.ttf文件
index.css文件设置字体font-family
@font-face {
font-family: “password”;
src: url(…/…/assets/css/PasswordEntry.ttf);
}
第二步:
login.vue 创建class类名
.pwd-input {
font-family: “password”;
}
第三步:
html使用时 el-input框使用 type:text 类型,需要小眼睛切换效果需要自定义,切换"..."和明文的操作,需要在点击切换眼睛的同时改变class类名即可实现此功能。