Vue.component('button-counter', {
template: '<button v-on:click="count++">You clicked me {{ count }} times.</button>',
data: function() {
return {
count: 0
}
}
})
new Vue({
el: "#app-1"
})
<div id="app-1">
<button-counter>
</button-counter>
<button-counter>
</button-counter>
<button-counter>
</button-counter>
</div>