学习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++ }}
添加回答
举报
0/150
提交
取消