【Vue3】插槽的使用及其分类

2024-06-17 07:44

本文主要是介绍【Vue3】插槽的使用及其分类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

历史小剧场

后来我才明白,造反的宋江,和招安的宋江,始终是同一个人。
为什么要造反?
造反,就是为了招安。 ----《明朝那些事儿》

概念

在日常的项目开发中,当我们在编写一个完整的组件时,不可避免的会引用一些外部组件或者自定义组件。而有些内容是在父组件中一样的,而在子组件中会对一些数据单独的处理。为了解决类似这样的问题,Vue设计出来了slot这个东西,也可以称为Vue的内容分发机制,它的主要作用就是向子组件的指定位置插入一断内容,这个内容可以是HTML或者其他组件。

默认插槽

这里有两个组件

Father

<!--  -->
<template><div class="category"><Category title="今日美食推荐"><ul><li v-for="item in foods" :key="item.id">{{ item.name }}</li></ul></Category><Category title="今日美景大赛"><img :src="imageUrl" alt=""></Category><Category title="今日电影直播"><video :src="videoUrl" controls /></Category></div>
</template><script setup lang="ts" name="Father">
import { reactive, ref } from 'vue';
import Category from './Category.vue'
const foods = reactive([{id: 1,name: '鱼香肉丝'},{id: 2,name: '麻婆豆腐'},{id: 3,name: '大肉饼'}
])const imageUrl = ref('https://images.wallpaperscraft.com/image/single/japanese_apricot_flowers_buds_1252465_1280x720.jpg')
const videoUrl = ref('https://cdn.pixabay.com/video/2021/04/12/70796-538877060_large.mp4')
</script><style lang="scss" scoped>
.category {display: flex;// 均分开justify-content: space-evenly; 
}
img, video {width: 100%;
}
</style>

Child:

<!--  -->
<template><div class="content"><h2>{{ title }}</h2><slot>默认内容</slot></div>
</template><script setup lang="ts" name="Category">
defineProps(['title'])
</script><style lang="scss" scoped>
.content {background-color: skyblue;width: 200px;height: 300px;border-radius: 10px;padding: 10px;
}
h2 {text-align: center;background-color: green;color: white;font-weight: 800;
}
</style>

具名插槽

具名插槽就是给我们的插槽起一个名字,即给插槽定义一个name属性

Child:

<!--  -->
<template><div class="content"><slot name="s1">内容1</slot><slot name="s2">内容2</slot></div>
</template><script setup lang="ts" name="Category">
</script><style lang="scss" scoped>
.content {background-color: skyblue;width: 200px;height: 300px;border-radius: 10px;padding: 10px;
}</style>

Father:

<!--  -->
<template><div class="category"><Category title=""><template v-slot:s2><ul><li v-for="item in foods" :key="item.id">{{ item.name }}</li></ul></template><template v-slot:s1><h2>今日美食推荐</h2></template></Category><Category><template v-slot:s2><img :src="imageUrl" alt="" /></template><template v-slot:s1><h2>今日美景大赛</h2></template></Category><Category><template #s2><video :src="videoUrl" controls></video></template><template #s1><h2>今日电影直播</h2></template></Category></div>
</template><script setup lang="ts" name="Father">
import { reactive, ref } from 'vue';
import Category from './Category.vue'
const foods = reactive([{id: 1,name: '鱼香肉丝'},{id: 2,name: '麻婆豆腐'},{id: 3,name: '大肉饼'}
])const imageUrl = ref('https://images.wallpaperscraft.com/image/single/japanese_apricot_flowers_buds_1252465_1280x720.jpg')
const videoUrl = ref('https://cdn.pixabay.com/video/2021/04/12/70796-538877060_large.mp4')
</script><style lang="scss" scoped>
.category {display: flex;// 均分开justify-content: space-evenly; 
}
h2 {text-align: center;background-color: green;color: white;font-weight: 800;
}
img, video {width: 100%;
}
</style>

作用域插槽

作用域插槽:数据在子组件那边,但根据数据生成的结构,却由父组件决定

父组件使用:变量 传递数据

<!--  -->
<template><div class="content"><slot name="s1">内容1</slot><slot name="s2" :foods="foods">内容2</slot></div>
</template><script setup lang="ts" name="Category">
import { reactive } from 'vue';const foods = reactive([{id: 1,name: '鱼香肉丝'},{id: 2,name: '麻婆豆腐'},{id: 3,name: '大肉饼'}
])
</script><style lang="scss" scoped>
.content {background-color: skyblue;width: 200px;height: 300px;border-radius: 10px;padding: 10px;
}</style>

父组件可以使用params读取到子组件传递过来的数据

<!--  -->
<template><div class="category"><Category title=""><template v-slot:s2="params"><ul><li v-for="item in params.foods" :key="item.id">{{ item.name }}</li></ul></template><template v-slot:s1><h2>今日美食推荐</h2></template></Category><Category><!-- 解构出来 --><template v-slot:s2="{foods}"><ol><li v-for="item in foods" :key="item.id">{{ item.name }}</li></ol></template><template v-slot:s1><h2>今日美景大赛</h2></template></Category><Category><!-- 解构出来 --><template #s2="{foods}"><h4 v-for="item in foods" :key="item.id">{{ item.name }}</h4></template><template #s1><h2>今日电影直播</h2></template></Category></div>
</template><script setup lang="ts" name="Father">
import Category from './Category.vue'</script><style lang="scss" scoped>
.category {display: flex;// 均分开justify-content: space-evenly; 
}
h2 {text-align: center;background-color: green;color: white;font-weight: 800;
}
img, video {width: 100%;
}
</style>

在这里插入图片描述

这篇关于【Vue3】插槽的使用及其分类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1068849

相关文章

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Pandas使用SQLite3实战

《Pandas使用SQLite3实战》本文主要介绍了Pandas使用SQLite3实战,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 目录1 环境准备2 从 SQLite3VlfrWQzgt 读取数据到 DataFrame基础用法:读

JSON Web Token在登陆中的使用过程

《JSONWebToken在登陆中的使用过程》:本文主要介绍JSONWebToken在登陆中的使用过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录JWT 介绍微服务架构中的 JWT 使用结合微服务网关的 JWT 验证1. 用户登录,生成 JWT2. 自定义过滤