Skip to content

Instantly share code, notes, and snippets.

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