Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created February 12, 2018 01:06
Show Gist options
  • Save coderdiaz/833645e25e3b843a8cec701df6e54a68 to your computer and use it in GitHub Desktop.
Save coderdiaz/833645e25e3b843a8cec701df6e54a68 to your computer and use it in GitHub Desktop.
<template>
<div class="hijo-component">
<h1>Hijo</h1>
<button @click.prevent="emitirEventoHijo"></button>
</span>
</template>
<script>
export default {
name: 'Hijo',
methods: {
emitirEventoHijo () {
this.$emit('hijo:change')
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment