From 3ce26ff608aa9ced137c881b405f1a531205a427 Mon Sep 17 00:00:00 2001 From: Scott Lesser Date: Sun, 4 Sep 2016 09:10:46 -0500 Subject: [PATCH] Correct app reference in 2.0 docs --- src/guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/index.md b/src/guide/index.md index 6e7dfed80d..d42028ac2c 100644 --- a/src/guide/index.md +++ b/src/guide/index.md @@ -113,7 +113,7 @@ var app3 = new Vue({ {% endraw %} -Go ahead and enter `app2.seen = false` in the console. You should see the message disappear. +Go ahead and enter `app3.seen = false` in the console. You should see the message disappear. This second example demonstrates that we can bind data to not only text and attributes, but also the **structure** of the DOM. Moreover, Vue also provides a powerful transition effect system that can automatically apply [transition effects](transitions.html) when elements are inserted/updated/removed by Vue.