Skip to content

Commit 49b50a3

Browse files
jingsamchrisvfritz
authored andcommitted
Update index.md (#442)
1 parent 723f85c commit 49b50a3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/guide/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,11 @@ Now we can pass the todo into each repeated component using `v-bind`:
296296
var app7 = new Vue({
297297
el: '#app-7',
298298
data: {
299-
todos: [/* ... */]
299+
todos: [
300+
{ text: 'Learn JavaScript' },
301+
{ text: 'Learn Vue' },
302+
{ text: 'Build something awesome' }
303+
]
300304
}
301305
})
302306
```

0 commit comments

Comments
 (0)