Using action to pass parameters to report errors in vuex

the configuration related to vuex is as follows

< hr >
const mutations = {
    incrementment( state,payload ){
        state.numb+= payload.amount;
    },
    reducement( state ){
        state.numb-- ;
    },
    [SOME_MUTATION](){
        state.numb+=10.98 
    }
}

const actions = {
    actionIncrement({ commit }){
        commit("incrementment")
    }
}

const store = new Vuex.Store({
    state,
    getters,
    actions,
    mutations
})
< hr >

then call

in the component
<button @click="actionHand()">Actions </button>

actionHand(){
          this.$store.dispatch({
            type:"actionIncrement",
            amount:70
          })
        }

but report an error when clicking Cannot read property "amount" of undefined
ask the boss to answer

Mar.01,2021

const actions = {
    actionIncrement({ commit }, payload){
        commit('incrementment', payload)
    }
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b333c7-40406.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b333c7-40406.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?