Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created January 27, 2019 19:36
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 uno-de-piera/6c87ce3daac529936a0ec4f1079c7758 to your computer and use it in GitHub Desktop.
Save uno-de-piera/6c87ce3daac529936a0ec4f1079c7758 to your computer and use it in GitHub Desktop.
<script>
export default {
created () {
this.$bus.$on('userRegistered', (user) => {
console.log(user)
})
},
beforeDestroy(){
this.$bus.$off('userRegistered');
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment