Vuex uses async / await Times error

set actions, in the newly created new Vuex.Store and set the async / await, code as follows:

        async actthree:(context)=>{
            context.commit("alertthree",await alertthree())
        },
        async actfour:(context)=>{
            await dispatch("actthree")
            commit("alertfour",await alertfour())
        }
    

but an error is reported in the console:

clipboard.png

how can I modify it?

Mar.11,2021

syntactically there is

var a = {
    myAsyncFunction: async() => {
    }
}
//
var a = {
    async myAsyncFunction() {}
}

does not have async fnName: () = > {}


async after the colon


there is no such way of writing

1:
async test(){
  console.log(1)
}
2:
test2:async ()=>{
  console.log(2)
}
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-1b36f6a-2c061.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-1b36f6a-2c061.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?