const state = { buyGoods: [] } const mutations = { // 设置下单购买时候需要结算的商品 setBuyGoods(state, data) { state.buyGoods = data } } export default { state, mutations };