From 7470752d6ed601450cac6f1c3b56f3a566f67e31 Mon Sep 17 00:00:00 2001 From: Dan Wall Date: Sun, 11 Oct 2015 12:20:08 +1000 Subject: [PATCH] Fix introduction ViewModel example --- source/guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/index.md b/source/guide/index.md index f35bbf8b6b..906db41fb4 100644 --- a/source/guide/index.md +++ b/source/guide/index.md @@ -34,7 +34,7 @@ var exampleData = { // which links the View and the Model var exampleVM = new Vue({ el: '#example-1', - data: data + data: exampleData }) ```