From 4bb5140795092bed4019f0b53f2a470a24eee711 Mon Sep 17 00:00:00 2001 From: Kyle Stevenson Date: Sat, 12 Sep 2015 14:08:32 -0700 Subject: [PATCH] fix typo in computed guide `evaludated` --> `evaluated` --- source/guide/computed.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/computed.md b/source/guide/computed.md index 5ee896ee28..bf306b732f 100644 --- a/source/guide/computed.md +++ b/source/guide/computed.md @@ -89,7 +89,7 @@ var vm = new Vue({ }) ``` -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. +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. 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.