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 a690f6a commit 1d85f08Copy full SHA for 1d85f08
src/guide/reactivity.md
@@ -12,7 +12,7 @@ order: 15
12
13
用户看不到 getter/setters,但是在内部它们让 Vue 追踪依赖,在属性被访问和修改时通知变化。这里需要注意的问题是浏览器控制台在打印数据对象时 getter/setter 的格式化并不同,所以你可能需要安装 [vue-devtools](https://github.com/vuejs/vue-devtools) 来获取更加友好的检查接口。
14
15
-每个组件实例都有相应的 **watcher** 程序实例,它会在组件渲染的过程中把属性记录为依赖,之后当依赖项的 `】setter` 被调用时,会通知 `watcher` 重新计算,从而致使它关联的组件得以更新。
+每个组件实例都有相应的 **watcher** 程序实例,它会在组件渲染的过程中把属性记录为依赖,之后当依赖项的 `setter` 被调用时,会通知 `watcher` 重新计算,从而致使它关联的组件得以更新。
16
17

18
0 commit comments