关于Vue

来源:互联网 发布:2011年小牛夺冠数据 编辑:程序博客网 时间:2024/06/02 01:54
    <div id="app-7">
    <ol>
    <!-- Now we provide each todo-item with the todo object -->
    <!-- it's representing, so that its content can be dynamic -->
    <todo-item v-for="item in groceryList" v-bind:todo="item"></todo-item>
    </ol>
    </div>
    Vue.component('todo-item', {
    props: ['todo'],
    template: '<li>{{ todo.text }}</li>'
    })
    var app7 = new Vue({
    el: '#app-7',
    data: {
    groceryList: [
    { text: 'Vegetables' },
    { text: 'Cheese' },
    { text: 'Whatever else humans are supposed to eat' }
    ]
    }
    })
0 0
原创粉丝点击