插槽slot(Vue 2.6之后用法)
在 2.6.0 中,我们为具名插槽和作用域插槽引入了一个新的统一的语法 (即 v-slot 指令)。它取代了 slot 和 slot-scope 这两个目前已被废弃但未被移除且仍在文档中的特性。新语法的由来可查阅这份 RFC。
slot有三种类型
默认插槽 default
具名插槽 name
作用域插槽 v-slot
在子组件中:
插槽用<slot>标签来确定渲染的位置,里面放如果父组件没传内容时的后备内容。一个不带 name的 <slot> 出口会带有隐含的名字“default”。
具名插槽用name属性来表示插槽的名字
作用域插槽在作用域上绑定属性来将子组件的信息传给父组件使用
有时我们需要多个插槽。例如对于一个带有如下模板的 <base-layout> 组件:
<div class="container">
<header>
<!-- 我们希望把页头放这里 -->
</header>
<main>
<!-- 我们希望把主要内容放这里 -->
</main>
<footer>
<!-- 我们希望把页脚放这里 -->
</footer>
</div>
对于这样的情况,<slot> 元素有一个特殊的特性:name。这个特性可以用来定义额外的插槽:
<div class="container">
<header>
<slot name="header"></slot>
</header>
<main>
<slot></slot>
</main>
<footer>
<slot name="footer"></slot>
</footer>
</div>
一个不带 name 的 <slot> 出口会带有隐含的名字“default”。
v-slot
具名插槽通过指令参数v-slot:插槽名的形式传入,可以简化为 #插槽名
作用域插槽通过**v-slot:xxx=“slotProps”**的slotProps来获取子组件传出的属性
v-slot属性只能在上使用,但在【只有默认插槽时】可以在组件标签上使用
//具名插槽的缩写
<template>
<child>
<!--默认插槽-->
<template v-slot> // v-slot:default
<div>默认插槽</div>
</template>
<!--具名插槽-->
<template #header> // v-slot:heade
<div>具名插槽</div>
</template>
<!--作用域插槽-->
<template #footer="slotProps"> //v-slot:foote
<div>
{{slotProps.testProps}}
</div>
</template>
<child>
</template>
在向具名插槽提供内容的时候,我们可以在一个 <template> 元素上使用 v-slot 指令,并以 v-slot 的参数的形式提供其名称:
<base-layout>
<template v-slot:header>
<h1>Here might be a page title</h1>
</template>
<p>A paragraph for the main content.</p>
<p>And another one.</p>
<template v-slot:footer>
<p>Here's some contact info</p>
</template>
</base-layout>
现在 <template> 元素中的所有内容都将会被传入相应的插槽。任何没有被包裹在带有 v-slot的 <template> 中的内容都会被视为默认插槽的内容。
然而,如果你希望更明确一些,仍然可以在一个 <template> 中包裹默认插槽的内容:
<base-layout>
<template v-slot:header>
<h1>Here might be a page title</h1>
</template>
<template v-slot:default>
<p>A paragraph for the main content.</p>
<p>And another one.</p>
</template>
<template v-slot:footer>
<p>Here's some contact info</p>
</template>
</base-layout>
任何一种写法都会渲染出:
<div class="container">
<header>
<h1>Here might be a page title</h1>
</header>
<main>
<p>A paragraph for the main content.</p>
<p>And another one.</p>
</main>
<footer>
<p>Here's some contact info</p>
</footer>
</div>
注意 v-slot 只能添加在 上 (只有一种例外情况),这一点和已经废弃的 slot 特性)不同。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。