vuex想要改变state里的属性,官方推荐的方法是通过mutaion的方式修改state。 例如: store.js const state = {num:0 } const mutations = {SET_NUM(state, payload) {state.num= payload……