Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created February 12, 2018 04:26
Show Gist options
  • Save coderdiaz/47b253158460c694aaa9d843261c09ed to your computer and use it in GitHub Desktop.
Save coderdiaz/47b253158460c694aaa9d843261c09ed to your computer and use it in GitHub Desktop.
<template>
<div class="hijo-component">
<h1>Hijo</h1>
<button @click.prevent="emitirEventoHijo"></button>
</div>
</template>
<script>
import {EventBus} from './event-bus'
export default {
name: 'Hijo',
created () {
EventBus.$on('padre:change', () => {
console.log('Mensaje del padre recibido')
})
},
methods: {
emitirEventoHijo() {
EventBus.$emit('hijo:change')
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment