我有这个代码:
export default new Vuex.Store({
state: {
bottles: 20,
disabledBtn: false
},
mutations: {
REMOVE_BOTTLES(state) {
if (state.bottles > 0) {
state.bottles--;
}
},
ADD_BOTTLES(state, items) {
state.bottles = state.bottles + items
}
},
actions: {
removeOneBottle ({commit}) {
commit('REMOVE_BOTTLES');
},
addBottlesInput ({commit}, items) {
commit('ADD_BOTTLES', items);
}
}
})
我需要将新添加的值添加到状态中。在突变中,它只是作为字符串添加,但我需要它来添加通过输入传递的数字。我将不胜感激。
呼唤远方
相关分类