To make a Vuex store easier to scale, it can be separated into modules. Each module can have its own state, mutations, getters, and actions. The state parameter in mutations and getters are the module’s local state. … This allows multiple modules to react to the same mutation or action type.