Created
February 12, 2018 03:27
-
-
Save coderdiaz/e56365436ccb09984e6bb204afcdb3fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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