Created
February 12, 2018 01:07
-
-
Save coderdiaz/9905fba35d7e4f4f6e652e4b6e9794bd 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:change="escucharPadre"></padre> | |
</span> | |
</template> | |
<script> | |
import Padre from 'Padre' | |
export default { | |
name: 'Abuelo', | |
methods: { | |
escucharPadre () { | |
console.log('Mensaje recibido de Padre') | |
} | |
} | |
components: { | |
Padre | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment