How to access to nested action in vuex store modules?
1
After creating a project with ApiPlatform and generate some code with the VueJs code generator I was unable to dispatch some actions... Here is the example: main store file export default new Vuex.Store({ modules: { ... producto, ... } }) main producto store file export default { namespaced: true, modules: { list, //here is the action I want to use create, update, show, del } } main producto/list store file import * as actions from './actions' import * as getters from './getters' import mutations from './mutations' export default { namespaced: true, state: { error: '', isLoading: false, items: , view: }, actions, getters, mutations } actions f