Guest User

Untitled

a guest
Feb 23rd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <template>
  2. <div class="hijo-component">
  3. <h1>Hijo</h1>
  4. <button @click.prevent="emitirEventoHijo"></button>
  5. </span>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'Hijo',
  10. methods: {
  11. emitirEventoHijo () {
  12. this.$emit('hijo:change')
  13. }
  14. }
  15. }
  16. </script>
Add Comment
Please, Sign In to add comment