欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue实现密码显示隐藏切换功能

程序员文章站 2022-12-29 22:12:14
先给大家分享效果图: 具体实现代码如下所示: html: 设置密码...

先给大家分享效果图:

vue实现密码显示隐藏切换功能vue实现密码显示隐藏切换功能

具体实现代码如下所示:

html:

<group>
  <span>设置密码</span>
  <x-input :type="this.registration_data.pwdtype"  placeholder="请填写密码" @on-change="password"></x-input>
 <img :src="this.registration_data.src" @click="changetype()"/>
</group>

script:

data () {

 return {

  registration_data:{

   pwdtype:"password",
   src:require("../assets/colse_eyes.png")
  }
 }
},
methods:{
changetype(){
 this.registration_data.pwdtype = this.registration_data.pwdtype==='password'?'text':'password';
 this.registration_data.src=this.registration_data.src==require("../assets/colse_eyes.png")?require("../assets/open_eyes.png"):require("../assets/colse_eyes.png");
}
}

注:带小眼睛的睁开闭合。

总结

以上所述是小编给大家介绍的vue实现密码显示隐藏切换功能,希望对大家有所帮助