Browse Source

docs(zh): update (#1454)

勾三股四 6 years ago
parent
commit
f5a42d3410
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/zh/api/README.md

+ 1 - 1
docs/zh/api/README.md

@@ -170,7 +170,7 @@ const store = new Vuex.Store({ ...options })
 
 - `watch(fn: Function, callback: Function, options?: Object): Function`
 
-  响应式地侦听 `fn` 的返回值,当值改变时调用回调函数。`fn` 接收 store 的 state 作为第一个参数,其 getter 作为第二个参数。最后接收一个可选的对象参数表示 Vue 的 `vm.$watch` 方法的参数。
+  响应式地侦听 `fn` 的返回值,当值改变时调用回调函数。`fn` 接收 store 的 state 作为第一个参数,其 getter 作为第二个参数。最后接收一个可选的对象参数表示 Vue 的 [`vm.$watch`](https://cn.vuejs.org/v2/api/#watch) 方法的参数。
 
   要停止侦听,调用此方法返回的函数即可停止侦听。