100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > vue实现输入框密码的隐藏与显示

vue实现输入框密码的隐藏与显示

时间:2020-01-04 19:06:06

相关推荐

vue实现输入框密码的隐藏与显示

学习目标:

vue实现输入框密码的显示和隐藏


代码内容:

通过点击红心实现密码的显示和隐藏,初始默认为隐藏。

//template中代码:<div><label>密码:<br /></label><input type="password" name="passwd" v-if="show" placeholder="input the passwd"><input type="text" name="passwd" v-else placeholder="input the passwd"><div @click="pwd_show">❤</div></div>

//script中代码:export default {data(){return{show: true//初始为隐藏状态}},methods:{pwd_show:function(){//红心按钮定义方法this.show = !this.show},

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。