文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

vue架构插槽slot如何使用

2023-06-29 06:10

关注

这篇文章主要介绍了vue架构插槽slot如何使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇vue架构插槽slot如何使用文章都会有所收获,下面我们一起来看看吧。

1、直接使用

新建组件 Article

<template>    <div>        日期:2022-01-15        <slot></slot>    </div></template>

新建 Learn,并在 Learn 中使用 Article

Learn.vue 和 Article.vue 在同一文件夹下

<template>    <div>        <Article>            <div>送郎八月到扬州,长夜孤眠在画楼。女子拆开不成好,秋心合着却成愁</div>        </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

slot 相当于把 div 插入到 Article 中 slot 位置

运行效果

vue架构插槽slot如何使用

2、设置默认值

即使用 slot 时,不传入会显示默认的内容,传入则使用传入的内容

如不设置默认值,则不显示任何内容,代码如下

先看不设置默认值的情况

Article 内容

<template>    <div>        日期:2022-01-15        <slot></slot>    </div></template>

Learn 内容

<template>    <div>        <Article>        </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

运行效果

vue架构插槽slot如何使用

设置默认值

Article 内容

<template>    <div>        日期:2022-01-15        <slot>            <div>醉眠芳树下,半被落花埋</div>        </slot>    </div></template>

Learn 内容

<template>    <div>        <Article>        </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

运行效果

vue架构插槽slot如何使用

3、多个 slot 用法

 Article 内容

<template>    <div>        <slot name="title"></slot>        日期:2022-01-15        <slot name="content"></slot>    </div></template>

Learn 内容

<template>    <div>        <Article>            <template v-slot:title>                <div>窗前 【作者】赵崇嶓 </div>            </template>                <template v-slot:content>                <div>                    窗前寻丈地,种得一株梅。                    明月清风我,红尘不复来。                </div>            </template>                    </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

通过给 slot 标签设置 name 属性值,并通过 v-slot 来对应

运行效果

vue架构插槽slot如何使用

v-slot:title 可以简写为 #title,代码如下

<template>    <div>        <Article>            <template #title>                <div>窗前 【作者】赵崇嶓 </div>            </template>                <template #content>                <div>                    窗前寻丈地,种得一株梅。                    明月清风我,红尘不复来。                </div>            </template>                    </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

4、作用域插槽

父级插槽使用子组件中的数据

Article 内容

<template>    <div>        日期:2022-01-15        <slot v-bind:article="article">            <div>{{article.content1}}</div>        </slot>    </div></template><script>export default {    data() {        return {            article: {                content1: '从别后,忆相逢。几回魂梦与君同',                content2: '今宵剩把银釭照,犹恐相逢是梦中'              }        }    }}</script>

Learn 内容

<template>    <div>        <Article>        </Article>                <Article>            <template v-slot:default="slotProps">                {{ slotProps.article.content2 }}            </template>        </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

运行效果

看上下2个 Article 显示的区别,上边显示的是 content1,下边显示的是 content2

vue架构插槽slot如何使用

上面代码 v-slot:default="slotProps" 可以简写成 v-slot="slotProps"

简写后的代码

<template>    <div>        <Article>        </Article>         <Article>            <template v-slot="slotProps">                {{ slotProps.article.content2 }}            </template>        </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

解构插槽 Prop

在支持的环境下 (单文件组件或现代浏览器),可以使用 ES2015 解构传入具体的插槽 prop

代码如下

<template>    <div>        <Article>        </Article>         <Article>            <template v-slot="{article}">                {{ article.content2 }}            </template>        </Article>    </div></template><script>import Article from './Article.vue'export default {    components: {Article}}</script>

5、动态插槽名

Article 内容

<template>    <div>        <slot name="title"></slot>        日期:2022-01-15        <slot name="content"></slot>    </div></template>

Learn 内容

<template>    <div>        <Article>            <template v-slot:[dynamicSlotName]>                <div>身无彩凤双飞翼,心有灵犀一点通</div>            </template>        </Article>        <button @click="changeSlotName">改变插槽名</button>    </div></template><script>import Article from './Article.vue'export default {    components: {Article},    data() {        return {            dynamicSlotName: 'title'        }    },    methods: {        changeSlotName() {            this.dynamicSlotName = 'content'        }    }}</script>

运行效果

vue架构插槽slot如何使用

关于“vue架构插槽slot如何使用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“vue架构插槽slot如何使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯