vue中密码显示隐藏切换

Posted 红叶1994

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中密码显示隐藏切换相关的知识,希望对你有一定的参考价值。

html

<group>
<span>设置密码</span>
<x-input :type="this.registration_data.pwdType" placeholder="请填写密码" @on-change="password"></x-input>
<img src="../assets/colse_eyes.png" @click="changeType"/>
</group>

script:
data () {
return {
registration_data:{
pwdType:"password"
}
}
},
methods:{
changeType(){
this.registration_data.pwdType = this.registration_data.pwdType===‘password‘?‘text‘:‘password‘
}
}
注:没带小眼睛的睁开闭合。
 

以上是关于vue中密码显示隐藏切换的主要内容,如果未能解决你的问题,请参考以下文章

vue.js 左侧二级菜单显示与隐藏切换的实例代码

vue2.0实现点击后显示,再次点击隐藏

RadDataForm nativescript vue 显示/隐藏密码

片段生命周期 - 在显示/隐藏时调用哪个方法?

FragmentTransaction 隐藏/显示有时不起作用

登录页面的密码的显示与隐藏