[vue]插槽

梦想与她 提交于 2020-02-16 04:33:57

插槽

<div id="app">
    <todo>
    <!--:为v-bind:的简写-->
        <todo-title slot="todo-title" :title="title"></todo-title>
        <todo-items slot="todo-items" v-for="item in todoItems" :item="item"></todo-items>
    </todo>
</div>

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11/dist/vue.min.js"></script>
<script>
    Vue.component("todo", {
        template: '<div>' +
            '<slot name="todo-title"></slot>' +
            '<ul>' +
            '<slot name="todo-items"></slot>' +
            '</ul>' +
            '</div>'
    })

    Vue.component("todo-title", {
        props: ['title'],
        template: '<div>{{title}}</div>'
    })

    Vue.component("todo-items", {
        props: ['item'],
        template: '<div>{{item}}</div>'
    })

    var vm = new Vue({
        el: "#app",
        data: {
            title: "fruits",
            todoItems: ["苹果", "香蕉", "桃子"]
        }
    });
</script>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!