Use this tag for Vuex questions in which the store is subdivided into Vuex modules.
As a Vuex application grows in scale, the store and state tree can get increasingly bloated.
To help with that, Vuex allows us to divide our store into modules. Each module can contain its own state, mutations, actions, getters, and even nested modules.
By default, actions, mutations and getters inside modules are still registered under the global namespace - this allows multiple modules to react to the same mutation/action type.
Read more in the Modules section of Vuex's official website