JSFiddle - React, Tailwind, and code Playground
by SUNGMIN SHIN
HTML
<div id="container">
<p>
{{votes}}
</p>
<button @click="vote">투표하기</button>
</div>
<!-- // #container -->
JavaScript
new Vue({
el: '#container',
data: {
votes: 0
},
methods: {
vote: function(writer) {
this.$emit('voted');
console.log(this);
}
},
created() {
this.$on('voted', function(){
this.votes++;
console.log(this);
});
}
})