让父组件可以向子组件指定位置插入html结构,也是一种组件间通信的方式,适用于父组件===>子组件
父组件中:
html结构1
子组件中:
插槽默认内容
父组件中:
html结构1
html结构2
子组件中:
插槽默认内容
插槽默认内容
父组件中:
- {{g}}
{{g}}
子组件中:
例如,我们向下面图示中文字部分的内容通过插槽用图片和视频代替。
默认插槽相当于挖一个没有名字的坑(slot),等你往里面放入内容。(并且只能挖一个坑,但这个坑能填很多内容)
<template>
<div class="container">
<Category title="食物">
<img src="https://s3.ax1x.com/2021/01/16/srJlq0.jpg" alt="" />
Category>
<Category title="游戏">
<ul>
<li v-for="(g, index) in games" :key="index">{{ g }}li>
ul>
Category>
<Category title="电影">
<video src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" controls>video>
Category>
div>
template>
<script>
import Category from "./components/Category.vue";
export default {
name: "App",
components: { Category },
data() {
return {
foods: ["火锅", "烤全羊", "小龙虾", "手抓饭"],
games: ["守望先锋", "英雄联盟", "我的世界", "魔兽"],
films: ["阿凡达", "复仇者联盟", "侏罗纪世界", "魔兽世界"],
};
},
};
script>
<style lang="css">
.container {
display: flex;
justify-content: space-around;
}
img {
width: 100%;
}
video {
width: 100%;
}
style>
<template>
<div class="category">
<h3>{{title}}分类h3>
<slot>slot>
div>
template>
<script>
export default {
name:"Category",
props:['title']
}
script>
<style>
.category{
width: 200px;
height:300px;
background-color: skyblue;
}
h3{
background-color: orange;
text-align: center;
}
style>
具名插槽相当于挖一个坑,但你可以给这个坑起名字,并且用和这个坑名字相同的内容来填坑。这样名字不同就意味着可以有很多个坑。
<template>
<div class="container">
<Category title="食物">
<img slot="center" src="https://s3.ax1x.com/2021/01/16/srJlq0.jpg" alt="" />
<div slot="footer" class="foods">
<a href="#">更多美食a>
div>
Category>
<Category title="游戏">
<ul slot="center">
<li v-for="(g, index) in games" :key="index">{{ g }}li>
ul>
<div class="otherGames" slot="footer">
<a href="#">单机游戏a>
<a href="#">网络游戏a>
div>
Category>
<Category title="电影">
<video slot="center" src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" controls>video>
<div slot="footer" class="filmsTypes">
<a href="#">喜剧a>
<a href="#">科幻a>
<a href="#">惊悚a>
div>
Category>
div>
template>
<script>
import Category from "./components/Category.vue";
export default {
name: "App",
components: { Category },
data() {
return {
foods: ["火锅", "烤全羊", "小龙虾", "手抓饭"],
games: ["守望先锋", "英雄联盟", "我的世界", "魔兽"],
films: ["阿凡达", "复仇者联盟", "侏罗纪世界", "魔兽世界"],
};
},
};
script>
<style lang="css">
.container {
display: flex;
justify-content: space-around;
}
img {
width: 100%;
}
video {
width: 100%;
}
.foods{
text-align: center;
}
.otherGames{
display: flex;
justify-content: space-around;
}
.filmsTypes{
text-align: center;
display: flex;
justify-content: space-around;
}
style>
<template>
<div class="category">
<h3>{{title}}分类h3>
<slot name="center">中间部分slot>
<slot name="footer">底部部分slot>
div>
template>
<script>
export default {
name:"Category",
props:['title']
}
script>
<style>
.category{
width: 200px;
height:300px;
background-color: skyblue;
}
h3{
background-color: orange;
text-align: center;
}
style>
<template>
<div class="container">
<Category title="游戏">
<template scope="recieveDatas">
<ul slot="center">
<li v-for="(g, index) in recieveDatas.games" :key="index">{{ g }}li>
ul>
template>
Category>
<Category title="游戏">
<template slot-scope="recieveDatas">
<ol slot="center">
<li v-for="(g, index) in recieveDatas.games" :key="index">{{ g }}li>
ol>
template>
Category>
<Category title="游戏">
<template slot-scope="recieveDatas">
<h4 v-for="(g, index) in recieveDatas.games" :key="index">{{ g }}h4>
template>
Category>
div>
template>
<script>
import Category from "./components/Category.vue";
export default {
name: "App",
components: { Category },
};
script>
<style lang="css">
.container {
display: flex;
justify-content: space-around;
}
style>
<template>
<div class="category">
<h3>{{ title }}分类h3>
<slot :games="games">中间部分slot>
div>
template>
<script>
export default {
name: "Category",
props: ["title"],
data() {
return {
games: ["守望先锋", "英雄联盟", "我的世界", "魔兽"]
};
},
};
script>
<style>
.category {
width: 200px;
height: 300px;
background-color: skyblue;
}
h3 {
background-color: orange;
text-align: center;
}
style>
补充:
(1)和其他两种插槽方式相比,作用域插槽逻辑性更强。
(2)且就像其名一样,只在作用域范围内数据生效,这个作用域范围指的是你数据定义在哪个组件,那么你就只能在哪个组件上使用该数据。
(3)但有一种方式,即在标签上将数据类似props一样传输,在另一个组件上通过
中间部分 可以获取到该组件上的数据,其中xxx就是接收到的数据(是一个对象,通过对象.xxx就可以使用数据了)。(xxx和xxxx的名字是可以不同的)
(4)作用域插槽必须使用template标签包裹
(5)template标签中的属性可以使用scope,也可以使用slot-scope,只是后者版本更新
组件自身是指使用插槽< slot> slot>的那个组件。 ↩︎