组件使用插槽

在使用时间轴 uview 组件的时候,发现使用插槽 slot 使的自定义组件非常的灵活,于是学习下:

官网: https://uniapp.dcloud.net.cn/tutorial/vue-components.html#插槽

  1. 未使用插槽的时候, 使用componentA组件, 则该组件起始标签和结束标签之间的任何内容都会被抛弃
// 组件中添加 <view>你好啊</view>, 是无效的,内容会被抛弃

    <template>
        <view>
           <!-- 我是组件 -->
            <componentA>
                <view>你好啊</view>
            </componentA>
        </view>
    </template>
  1. 注意在使用<slot>时的位置, 位置取决于在模板中的位置
componentA 模版

<template>
    <view>
       <view class=""> 我是子模版 </view>
       <slot></slot>
    </view>
</template>

父类使用

    <template>
        <view>
            <componentA style="background: #9999;">
                 <view class="">我是父类第一行</view>
             </componentA>
        </view>
    </template>

效果:


WeChatf16b5a68ac6f2b6ad6934fc1c41cca1f.jpg
  1. 设置默认内容.
    默认内容: 在组件中用 <slot> 包括
    自定义内容: 在父类中, 在该组件中自定内容即可

例如:

submitButton 组件 

<template>
    <view>
        <slot>
            <view class="" style="background-color: bisque;">组件默认数据一</view>
            <view class="" style="background-color: palevioletred;">组件默认数据二</view>
        </slot>
    </view>
</template>
父类使用

<template>
    <view>
       <!-- 组件 -->
        <submitButton>
            <!-- 自定义内容 -->
            <view class="" style="background-color: palevioletred;">新增</view>
        </submitButton>
    </view>
</template>

效果:

WeChat05812c146cc02685e7602b5c3d027e11.jpg
  1. 需要多个插槽时, 用name 来定义具名插槽

注意:
v-slot 只能添加在 <template> 上
一个不带 name 的 <slot> 出口会带有隐含的名字 “default”

使用规则:
1 . 在<slot> 中定义 name 来定义不同的插槽名称;

例如:

//  header
<slot name="header"></slot>

//  默认 
<slot></slot>

//  footer
<slot name="footer"></slot>

  1. 在向具名插槽提供内容的时候,我们可以在一个 <template> 元素上使用 v-slot 指令,并以 v-slot 的参数的形式提供其名称;

例如:

submitButton 组件

<template>
    <view>
        // 头部
        <view class="header">
            <slot name='header'>头部</slot>
        </view>
        // 默认
        <view class="main">
            <slot name="default">默认</slot>
        </view>
        // 页脚
        <view class="footer">
            <slot name="footer">页脚</slot>
        </view>
    </view>
</template> 

父类引用组件

    <template>
        <view>
            <submitButton>
                    
                <!-- 自定义头部 -->
                <template v-slot:header>
                    <view class="">头部内容</view>
                </template>
                    
                <!-- 自定默认部分 -->
                <template>
                    <view class="">默认内容</view>
                </template>
                    
                <!-- 自定义底部 -->
                <template v-slot:footer>
                    <view class="">底部内容</view>
                </template>

            </submitButton>
        </view>
    </template>

效果:

WeChatba3f221cbe1c98774a5731d613a4f269.jpg
  1. 具名插槽的缩写

v-slot 也有缩写,即把参数之前的所有内容 (v-slot:) 替换为字符 #
例如: v-slot:header 可以被重写为#header

v-slot 缩写 #

    <template>
        <view>
            <submitButton>
                    
                <!-- 定义头部 -->
                <template #header>
                    <view class="">头部内容</view>
                </template>
                    
                <!-- 自定默认部分 -->
                <template>
                    <view class="">默认内容</view>
                </template>
                    
                <!-- 定义底部 -->
                <template #footer>
                    <view class="">底部内容</view>
                </template>

            </submitButton>
        </view>
    </template>

  1. 父类访问组件中插槽的数据;
    注意: 只能用于默认插槽

1. 在插槽元素上绑定属性

    <!-- 子组件 <current-user>-->
    <template>
        <view>
            <slot :user="user">{{user.lastName}}</slot>
        </view>
    </template>
    <script>
        export default {
            data() {
                return {
                    user:{
                        "lastName":"bar",
                        "firstName":"foo"
                    }
                }
            }
        }
    </script>

2. 在父级作用域中,我们可以使用带值的 v-slot 来定义我们提供的插槽 prop 的名字

    <template>
        <view>
            <current-user>
                <template v-slot:default="slotProps">
                    {{ slotProps.user.firstName }}
                </template>
            </current-user>
        </view>
    </template>

或者

    <current-user v-slot="{ user }">
        {{ user.firstName }}
    </current-user>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容