Skip to content

Commit 4bb5140

Browse files
committed
fix typo in computed guide
`evaludated` --> `evaluated`
1 parent a728f32 commit 4bb5140

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
@@ -89,7 +89,7 @@ var vm = new Vue({
8989
})
9090
```
9191

92-
In the example above, the computed property relies on `vm.msg`. Because this is an observed data property on the Vue instance, it is considered a reactive dependency. Whenever `vm.msg` is changed, `vm.example`'s value will be re-evaludated.
92+
In the example above, the computed property relies on `vm.msg`. Because this is an observed data property on the Vue instance, it is considered a reactive dependency. Whenever `vm.msg` is changed, `vm.example`'s value will be re-evaluated.
9393

9494
However, `Date.now()` is **not** a reactive dependency, because it has nothing to do with Vue's data observation system. Therefore, when you programatically access `vm.example`, you will find the timestamp to remain the same unless `vm.msg` triggered a re-evaluation.
9595

0 commit comments

Comments
 (0)