這篇文章主要介紹了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"); } }
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
在angularjs中使用$http實作非同步上傳Excel檔案方法
#以上是在vue中如何實現密碼顯示隱藏切換功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!