【效果图】
【html】
// 前后代码【略】
<el-form-item label="密码" prop="pwd">
<el-input v-model="ruleForm.pwd" :type="pwdType" placeholder="请输入密码" @keyup.enter.native="login">
<i slot="suffix" class="el-icon-view" @click="showPwd"></i>
</el-input>
</el-form-item>
【js】
showPwd () {
this.pwdType === 'password' ? this.pwdType = '' : this.pwdType = 'password';
let e = document.getElementsByClassName('el-icon-view')[0];
this.pwdType == '' ? e.setAttribute('style', 'color: #409EFF') : e.setAttribute('style', 'color: #c0c4cc');
},
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。