Skip to content

Instantly share code, notes, and snippets.

@livoist
Last active February 23, 2020 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save livoist/c5930b336fe5423134a4e45af4f34e5a to your computer and use it in GitHub Desktop.
Save livoist/c5930b336fe5423134a4e45af4f34e5a to your computer and use it in GitHub Desktop.
<script>
// mixins.js
export default {
props: {
isOpen: {
default: true
}
},
data() {
return {
shown: this.isOpen
}
},
methods: {
hide() {
this.shown = false
},
show() {
this.shown = true
},
toggle() {
this.shown =! this.shown
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment