store.commit({
  type: 'increment',
  value: 20
})Now the entire object will be passed as the payload to mutation handlers(i.e, without any changes to handler signature).
mutations: {
  increment (state, payload) {
    state.count += payload.value
  }
}