Vue插槽

文章目录

什么是插槽

插槽就是子组件中的提供给父组件使用的一个占位符,用<slot></slot> 表示,父组件可以在这个占位符中填充任何模板代码,如 HTML、组件等,填充的内容会替换子组件的标签。

默认插槽

子组件

<template>
    <div>
        <h1>中国一流大学:</h1>
        <slot></slot>
    </div>
</template>
<script>
    export default {
        name: 'child'
    }
</script>

父组件:

<template>
    <div>
        <div>使用slot分发内容</div>
        <div>
            <child>
                <div >西安邮电大学</div>
            </child>
        </div>
    </div>
</template>
<script>
    import child from "./child.vue";
    export default {
        name: 'father',
        components:{
            child
        }
    }
</script>

具名插槽

具名插槽其实就是给插槽取个名字。一个子组件可以放多个插槽,而且可以放在不同的地方,而父组件填充内容时,可以根据这个名字把内容填充到对应插槽中。代码如下:
子组件:一个header插槽,一个footer插槽。

<template>
    <div>
            <h1>我是页头标题</h1>
            <div>
                <slot name="header"></slot>
            </div>
            <h1>我是页尾标题</h1>
            <div>
                <slot name="footer"></slot>
            </div>
    </div>
</template>
<script>
    export default {
        name: "child"
    }
</script>

父组件:给两个插槽分别分配内容

<template>
<div>
    <div>slot内容分发</div>
    <child>
        <template slot="header">
            <p>我是页头的内容</p>
        </template>
        <template slot="footer">
            <p>我是页尾的内容</p>
        </template>
    </child>
</div>
</template>
<script>
    import child from "./child.vue";
    export default {
        name: "father",
        components: {
            child
        }
    }
</script>

作用域插槽

作用域插槽即在组件上的属性,可以在组件元素内使用。在template元素上添加属性slot-scope。

<div id="app">
    <child>
        <template slot-scope="a">
      <!-- {"say":"你好"} -->
            {{a}}
        </template>
    </child>
</div>
Vue.component('child',{
        template:`
            <div>
                <slot say="你好"></slot>
            </div>
        `
    })
上一篇:FusionInsight MRS透明加密方案


下一篇:export 和export default