Skip to content

Commit 59836b8

Browse files
committed
Merge pull request #111 from farinspace/patch-1
typo
2 parents e03fd65 + a8842c7 commit 59836b8

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
@@ -5,7 +5,7 @@ order: 8
55

66
Vue.js' inline expressions are very convenient, but the best use cases for them are simple boolean operations or string concatenations. For more complicated logic, you should use **computed properties**.
77

8-
A computed property is used to declaratively describe a value that depends on other values. When you data-bind to a computed property inside the template, Vue knows when to update the DOM when any of the values depended upon by the computed property has changed. This can be very power and makes your code more declarative, data-driven and thus easier to maintain.
8+
A computed property is used to declaratively describe a value that depends on other values. When you data-bind to a computed property inside the template, Vue knows when to update the DOM when any of the values depended upon by the computed property has changed. This can be very powerful and makes your code more declarative, data-driven and thus easier to maintain.
99

1010
It is often a better idea to use a computed property rather than an imperative `$watch` callback. Consider this example:
1111

0 commit comments

Comments
 (0)