@@ -127,11 +127,11 @@ const store = new Vuex.Store({ ...options })
127127
128128- ** ` commit(type: string, payload?: any, options?: Object) | commit(mutation: Object, options?: Object)` **
129129
130- 提交 mutation。` options` 里可以有 ` root: true` ,它允许在[命名空间模块](modules .md #namespacing )里提交根的 mutation。[详细介绍](mutations .md )
130+ 提交 mutation。` options` 里可以有 ` root: true` ,它允许在[命名空间模块](modules .md #命名空间 )里提交根的 mutation。[详细介绍](mutations .md )
131131
132132- ** ` dispatch(type: string, payload?: any, options?: Object) | dispatch(action: Object, options?: Object)` **
133133
134- 分发 action。` options` 里可以有 ` root: true` ,它允许在[命名空间模块](modules .md #namespacing )里分发根的 action。返回一个解析所有被触发的 action 处理器的 Promise 。[详细介绍](actions .md )
134+ 分发 action。` options` 里可以有 ` root: true` ,它允许在[命名空间模块](modules .md #命名空间 )里分发根的 action。返回一个解析所有被触发的 action 处理器的 Promise 。[详细介绍](actions .md )
135135
136136- ** ` replaceState(state: Object)` **
137137
@@ -158,11 +158,11 @@ const store = new Vuex.Store({ ...options })
158158
159159- ** ` registerModule(path: string | Array<string>, module: Module)` **
160160
161- 注册一个动态模块。[详细介绍](modules .md #dynamic - module - registration )
161+ 注册一个动态模块。[详细介绍](modules .md #模块动态注册 )
162162
163163- ** ` unregisterModule(path: string | Array<string>)` **
164164
165- 卸载一个动态模块。[详细介绍](modules .md #dynamic - module - registration )
165+ 卸载一个动态模块。[详细介绍](modules .md #模块动态注册 )
166166
167167- ** ` hotUpdate(newOptions: Object)` **
168168
@@ -172,28 +172,28 @@ const store = new Vuex.Store({ ...options })
172172
173173- ** ` mapState(namespace?: string, map: Array<string> | Object): Object` **
174174
175- 为组件创建计算属性以返回 Vuex store 中的状态。[详细介绍](state .md #the - mapstate- helper )
175+ 为组件创建计算属性以返回 Vuex store 中的状态。[详细介绍](state .md #mapstate- 辅助函数 )
176176
177- 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #binding - helpers - with - namespace )
177+ 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #带命名空间的绑定函数 )
178178
179179- ** ` mapGetters(namespace?: string, map: Array<string> | Object): Object` **
180180
181- 为组件创建计算属性以返回 getter 的返回值。[详细介绍](getters .md #the - mapgetters- helper )
181+ 为组件创建计算属性以返回 getter 的返回值。[详细介绍](getters .md #mapgetters- 辅助函数 )
182182
183- 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #binding - helpers - with - namespace )
183+ 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #带命名空间的绑定函数 )
184184
185185- ** ` mapActions(namespace?: string, map: Array<string> | Object): Object` **
186186
187- 创建组件方法分发 action。[详细介绍](actions .md #dispatching - actions - in - components )
187+ 创建组件方法分发 action。[详细介绍](actions .md #在组件中分发 - action )
188188
189- 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #binding - helpers - with - namespace )
189+ 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #带命名空间的绑定函数 )
190190
191191- ** ` mapMutations(namespace?: string, map: Array<string> | Object): Object` **
192192
193- 创建组件方法提交 mutation。[详细介绍](mutations .md #commiting - mutations - in - components )
193+ 创建组件方法提交 mutation。[详细介绍](mutations .md #在组件中提交 - mutation )
194194
195- 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #binding - helpers - with - namespace )
195+ 第一个参数是可选的,可以是一个命名空间字符串。[详细介绍](modules .md #带命名空间的绑定函数 )
196196
197197- ** ` createNamespacedHelpers(namespace: string): Object` **
198198
199- 创建基于命名空间的组件绑定辅助工具 。其返回一个包含 ` mapState` 、` mapGetters` 、` mapActions` 和 ` mapMutations` 的对象。它们都已经绑定在了给定的命名空间上。[详细介绍](modules .md #binding - helpers - with - namespace )
199+ 创建基于命名空间的组件绑定辅助函数 。其返回一个包含 ` mapState` 、` mapGetters` 、` mapActions` 和 ` mapMutations` 的对象。它们都已经绑定在了给定的命名空间上。[详细介绍](modules .md #带命名空间的绑定函数 )
0 commit comments