vue+elementUi 实现密码显示/隐藏+小图标变化(js一共三行代码,其中一行为了美观)...

图片描述
图片描述

【html】

 
  1. // 前后代码【略】

【js】

 
  1. showPwd () {

  2. this.pwdType === 'password' ? this.pwdType = '' : this.pwdType = 'password';

  3. let e = document.getElementsByClassName('el-icon-view')[0];

  4. this.pwdType == '' ? e.setAttribute('style', 'color: #409EFF') : e.setAttribute('style', 'color: #c0c4cc');

  5.  

你可能感兴趣的:(5小功能)