Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hereiscasio/7fcdaa3a56d3a35afdef58455600cf7a to your computer and use it in GitHub Desktop.
Save hereiscasio/7fcdaa3a56d3a35afdef58455600cf7a to your computer and use it in GitHub Desktop.
Vue: use `computed` without `data`
computed: {
shouldStorePwd: {
get: function() {
return (
localStorage.getItem('shouldStorePwd') ?
localStorage.getItem('shouldStorePwd') :
true
);
},
set: function(yesOrNo) {
localStorage.setItem('shouldStorePwd', yesOrNo);
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment