Skip to content

Instantly share code, notes, and snippets.

@allysonsilva
Created December 2, 2017 03:31
Show Gist options
  • Save allysonsilva/bd7b242f5eb60853e97994bd73b60b8b to your computer and use it in GitHub Desktop.
Save allysonsilva/bd7b242f5eb60853e97994bd73b60b8b to your computer and use it in GitHub Desktop.
Vue.js ⚡️ Eventos - Enviar e Escutar
new Vue({
el: '#app',
data: {
votes: 0
},
methods:
{
vote: function(writer) {
this.$emit('voted')
},
},
created() {
this.$on('voted', function(button) {
this.votes++
})
}
});
<div id="app">
<h1> {{ votes }} </h1>
<button @click="vote">Vote</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment