Guest User

Untitled

a guest
Feb 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <template>
  2. <div class="padre-component">
  3. <h1>Padre</h1>
  4. <hijo @hijo:change="escucharHijo"></hijo>
  5. <button @click.prevent="emitirEventoPadre"></button>
  6. </span>
  7. </template>
  8. <script>
  9. import Hijo from 'Hijo'
  10. export default {
  11. name: 'Padre',
  12. methods: {
  13. escucharHijo () {
  14. console.log('Mensaje recibido de Hijo')
  15. },
  16. emitirEventoPadre () {
  17. this.$emit('padre:change')
  18. }
  19. }
  20. components: {
  21. Hijo
  22. }
  23. }
  24. </script>
Add Comment
Please, Sign In to add comment