File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ const store = new Vuex.Store({ ...options })
202
202
203
203
The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
204
204
205
- The Second object argument's members can be a function. `function(state: any)`
205
+ The second object argument's members can be a function. `function(state: any)`
206
206
207
207
- **`mapGetters(namespace?: string, map: Array<string> | Object<string>): Object`**
208
208
@@ -216,15 +216,15 @@ const store = new Vuex.Store({ ...options })
216
216
217
217
The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
218
218
219
- The Second object argument's members can be a function. `function(dispatch: function, ...args: any[])`
219
+ The second object argument's members can be a function. `function(dispatch: function, ...args: any[])`
220
220
221
221
- **`mapMutations(namespace?: string, map: Array<string> | Object<string | function>): Object`**
222
222
223
223
Create component methods options that commit a mutation. [Details](mutations.md#committing-mutations-in-components)
224
224
225
225
The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
226
226
227
- The Second object argument's members can be a function. `function(commit: function, ...args: any[])`
227
+ The second object argument's members can be a function. `function(commit: function, ...args: any[])`
228
228
229
229
- **`createNamespacedHelpers(namespace: string): Object`**
230
230
You can’t perform that action at this time.
0 commit comments