Vue组件02
by Luo Qin
HTML
<div id="app">
<button-counter></button-counter>
</div>
Vue
Vue.component('button-counter',{
data:function(){
return {
count: 0
}
},
methods:{
clickAdd: function(){
this.count++
}
},
template:'<button @click="clickAdd">You clicked me {{count}} times</button>'
})
new Vue({
el: "#app"
})