学习vue的vuex,官方例子中有一处看不懂
HTML
<div id="app">
<p>{{ count }}</p>
<p>
<button @click="increment">+</button>
<button @click="decrement">-</button>
</p>
</div>
JS
如果要我自己去实现,我会写
mutations:{
increment:function(){
this.state.count++
}
相关分类