Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created February 12, 2018 01:07
Show Gist options
  • Save coderdiaz/9905fba35d7e4f4f6e652e4b6e9794bd to your computer and use it in GitHub Desktop.
Save coderdiaz/9905fba35d7e4f4f6e652e4b6e9794bd to your computer and use it in GitHub Desktop.
<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