Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created February 12, 2018 03:27
Show Gist options
  • Save coderdiaz/e56365436ccb09984e6bb204afcdb3fc to your computer and use it in GitHub Desktop.
Save coderdiaz/e56365436ccb09984e6bb204afcdb3fc to your computer and use it in GitHub Desktop.
<template>
<div class="abuelo-component">
<h1>Abuelo</h1>
<padre></padre>
</div>
</template>
<script>
import {EventBus} from './event-bus'
import Padre from './Padre' // Padre.vue
export default {
name: 'Abuelo',
created () {
EventBus.$on('hijo:change', () => {
console.log('Mensaje del hijo recibido')
})
EventBus.$on('padre:change', () => {
console.log('Mensaje del padre recibido')
})
},
components: {
Padre
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment