Skip to content

Instantly share code, notes, and snippets.

@vtno
Created December 7, 2018 04:00
Show Gist options
  • Save vtno/12d948a6ba1ca7c80b1fa7ab600b12d1 to your computer and use it in GitHub Desktop.
Save vtno/12d948a6ba1ca7c80b1fa7ab600b12d1 to your computer and use it in GitHub Desktop.
<template>
<button @click='increaseUpdateCount'>{{label}}</button>
</template>
<script>
import { EventBus } from './EventBus.js'
export default {
 props: ['label'],
 methods: {
increaseUpdateCount () {
EventBus.$emit('my-custom-event', 'hello')
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment