diff --git a/src/v2/guide/index.md b/src/v2/guide/index.md
index 38a212895d..3c4c827a5d 100644
--- a/src/v2/guide/index.md
+++ b/src/v2/guide/index.md
@@ -151,7 +151,9 @@ There are quite a few other directives, each with its own special functionality.
``` html
- -
+
-
{{ todo.text }}
@@ -162,9 +164,9 @@ var app4 = new Vue({
el: '#app-4',
data: {
todos: [
- { text: 'Learn JavaScript' },
- { text: 'Learn Vue' },
- { text: 'Build something awesome' }
+ { id: 1, text: 'Learn JavaScript' },
+ { id: 2, text: 'Learn Vue' },
+ { id: 3, text: 'Build something awesome' }
]
}
})