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:
how can I modify it?