Skip to content

Commit c19f754

Browse files
committed
Merge pull request #113 from yanxyz/patch-2
fix tag
2 parents 5afdf1d + 7708f82 commit c19f754

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)