Skip to content

Instantly share code, notes, and snippets.

@DawTaylor
Last active April 19, 2017 20:00
Show Gist options
  • Save DawTaylor/b2672c10fd47341692863a381acb29e5 to your computer and use it in GitHub Desktop.
Save DawTaylor/b2672c10fd47341692863a381acb29e5 to your computer and use it in GitHub Desktop.
<input type="password" id="pwd">
<input type="checkbox" v-model="showPwd">
data() {
return {
showPwd : false
}
},
watch : {
showPwd : (showPwd) => {
const input = document.querySelector('#pwd')
input.setAttribute('type', (!this.showPwd) ? 'password' : 'text')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment