Skip to content

Commit f0f222f

Browse files
committed
Merge branch 'master' of github.com:vuejs/vuejs.org
2 parents c1bddaf + c19f754 commit f0f222f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/guide/computed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ computed: {
106106
}
107107
```
108108

109-
Now, every time you access `vm.example`, the timestamp will be up-to-date. However, note this only affects programmatic access inside JavaScript; data-bindings are still dependency-drive. When you bind to a computed property in the template as {% raw %}`{{example}}`{% endraw %}, the DOM will only be updated when a reactive dependency has changed.
109+
Now, every time you access `vm.example`, the timestamp will be up-to-date. However, note this only affects programmatic access inside JavaScript; data-bindings are still dependency-drive. When you bind to a computed property in the template as `{% raw %}{{example}}{% endraw %}`, the DOM will only be updated when a reactive dependency has changed.
110110

111111
Next, let's learn about how to [write a custom directive](/guide/custom-directive.html).

0 commit comments

Comments
 (0)