码迷,mamicode.com
首页 > 其他好文 > 详细

5.逆天插槽

时间:2021-06-30 18:06:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:one   doctype   进阶   pre   image   head   图片   tps   class   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<!--:是v-bond的缩写-->
<div id="vue">
    <todo>
        <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.14/dist/vue.js"></script>
<script>
    Vue.component("todo",{//slot为插槽
        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: <li>{{item}}</li>
    })
    var vm = new Vue({
        el: #vue,
        data:{
            title: "123456",
            todoItems: [Java,C++,C]
        }
    });
</script>
</body>
</html>

技术图片

 

 进阶删除自定义事件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<!--:是v-bond的缩写-->
<div id="vue">
    <todo>
        <todo-title slot="todo-title" :title="title"></todo-title>
        <todo-items slot="todo-items" v-for="(item,index) in todoItems"
                    :item="item" :index="index" v-on:remove="removeItems(index)" :key="index"></todo-items>
    </todo>
</div>

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
<script>
    Vue.component("todo",{//slot为插槽
        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,index],
        //只能绑定当前组件的方法
        template: <li>{{index}}---{{item}}<button @click="remove">删除</button></li>,
        methods:{
            remove:function (index) {
                //自定义事件分发
                this.$emit(remove,index);
            }
        }
    })
    var vm = new Vue({
        el: #vue,
        data:{
            title: "123456",
            todoItems: [Java,C++,C]
        },
        methods:{
            removeItems:function (index) {
                this.todoItems.splice(index,1);//一次删除一个元素
            }
        }
    });
</script>
</body>
</html>

技术图片

 

 技术图片

 

5.逆天插槽

标签:one   doctype   进阶   pre   image   head   图片   tps   class   

原文地址:https://www.cnblogs.com/wuyimin/p/14952404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!