slot-具名插槽

Posted guwufeiyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了slot-具名插槽相关的知识,希望对你有一定的参考价值。

定义组件:NamedSlot组件

<div class="">
    <header>
          <slot name="header"></slot>
    </header>
    <main>
           <slot></slot>
    </main>
    <footer>
          <slot name="footer"></slot>
    </footer>
</div>

引用组件:

<NamedSlot>
    <template v-slot="header">
        <h1>将插入header slot 中</h1>
    </template>

    <p>将插入到main slot 中,即未命名的slot</p>

    <template v-slot="footer">
        <h1>将插入footer slot 中</h1>
    </template>
</NamedSlot>

 

以上是关于slot-具名插槽的主要内容,如果未能解决你的问题,请参考以下文章

32 Vue插槽slot的默认值和具名插槽使用2

slot-具名插槽

vue3.0 Composition API 上手初体验 vue组件的具名插槽 slot 的变化

vue3.0 Composition API 上手初体验 vue组件的具名插槽 slot 的变化

vue3.0 Composition API 上手初体验 vue组件的具名插槽 slot 的变化

插槽Vue中插槽Slot基本使用和具名插槽