- 作用: 让父组件可以向子组件指定的位置插入html结构,也是一种组件间通信的方式,适用于父组件? 子组件。
- 分类: 默认插槽、具名插槽、作用域插槽
- 使用方式:
1. 默认插槽
数据在父组件中
父组件中:
<Child>
<div>html结构</html>
</Child>
子组件中:
<div>
<slot>默认插槽内容。。。</slot>
</div>
2. 具名插槽
数据在父组件中
父组件中:
<Child>
<div slot="center">html结构</html>
// 如果有多个内容都在center内,可以使用template标签包裹,不会产生新的dom结构;
// 而且如果使用了template,可以将slot="center" 改为 v-slot:center
<template v-slot:center>
<div>xxx</div>
<h2>xxx</h2>
</template>
</Child>
子组件中:
<div>
<slot name="center">默认插槽内容。。。</slot>
<slot name="footer">默认插槽内容。。。</slot>
</div>
3. 作用域插槽
数据在组件的自身,但根据数据生成的结构需要组件的使用者来决定。(games数据在Child组件中,但使用数据所遍历出来的结构由Parent组件决定)
父组件:
<Child>
<template scope="scopeData">
<ul>
<li v-for="g in scopeData.games" :key="g">{{g}}</li>
</ul>
</template>
</Child>
子组件:
<div>
<slot :games="games"></slot>
</div>
data() {
return {
games: [xxxxxx]
}
}
|