await Promise.all(
res.data.hoge.map((id, index) =>
dispatch('hogeAction', { hogeId, id, params: config[index].params })
)
)
forEachだとawaitしても引数として渡すcallback内でしかawaitされないため、for文を使う
for (const [index, id] of res.data.hoge) {
await dispatch('hogeAction', { hogeId, id, params: config[index].params })
}