const moduleA = { state: { count: 0 }, mutations: { increase(state, payload) { state.count += payload.amount; } }, actions: { increase({ ...
確定! 回上一頁