We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1249790 commit 92d177bCopy full SHA for 92d177b
docs/en/api.md
@@ -53,8 +53,17 @@ const store = new Vuex.Store({ ...options })
53
```
54
state, // will be module local state if defined in a module.
55
getters, // same as store.getters
56
- rootState // same as store.state
57
+
58
+ Specific when defined in a module
59
60
+ ```
61
+ state, // will be module local state if defined in a module.
62
+ getters, // module local getters of the current module
63
+ rootState // global state
64
+ rootGetters // all getters
65
66
67
Registered getters are exposed on `store.getters`.
68
69
[Details](getters.md)
0 commit comments