
Nuxt.js
- 1 ответ
- 0 вопросов
1
Вклад в тег
If you are using the Modules mode of the Vuex store, only the primary module (in store/index.js) will receive this action. You'll need to chain your module actions from there.
async nuxtServerInit({ dispatch }) {
await dispatch('core/load')
}