var app = new Vue({ el: '#app', data: { groceryList: [ { id: 0, text: 'Vegetables' }, { id: 1, text: 'Cheese' }, { id: 2, text: 'Whatever else humans are supposed to eat' } ] } })
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Vue.component('todo-item', {
props: ['todo'],
template:'<li>{{ todo.text }}</li>'
})
var app =new Vue({
el:'#app',
data: {
groceryList: [
{ id:0,text:'Vegetables' },
{ id:1,text:'Cheese' },
{ id:2,text:'Whatever else humans are supposed to eat' }
]
}
})
No Results
Console
›
"Download the Vue Devtools extension for a better development experience:
https://github.com/vuejs/vue-devtools"
,
›
"You are running Vue in development mode.
Make sure to turn on production mode when deploying for production.
See more tips at https://vuejs.org/guide/deployment.html"