Created
February 12, 2018 04:26
-
-
Save coderdiaz/4b86e3ef5e409d5420975374f0a5867e 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="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