VuexのActionsを実行するトリガーとなるdispatchを
複数全て実行したい場合には
Promise.all
を使うと実装できます。
index.vue
<script>
export default {
async fetch({ store }) {
await Promise.all([
store.dispatch('〜〜〜'),
store.dispatch('〜〜〜'),
store.dispatch('〜〜〜')
])
}
}
</script>