vue插槽(slot)详解

简介:

<slot> 元素是一个插槽出口 (slot outlet),标示了父元素提供的插槽内容 (slot content) 将在哪里被渲染。

一:默认插槽的使用

例:
父组件:

  <children>
      <p>欢迎学习</p>
    </children>

子组件

// children 组件
 <div>
  <slot ></slot>
 </div>

浏览器最终渲染结果

<div>
<p>欢迎学习插槽用法</p>
</div>

这就是默认插槽的使用方法,但是大多数情况下,不止一个地方需要填入内容,那么如何知道插入的位置呢,那么 具名插槽也就随之而来。

二:具名插槽

什么是具名插槽,顾名思义就是有名子的插槽,这样就能明确什么内容插入到什么地方。下面看看具名插槽的使用方法。
子组件:

  <div>
   <slot name="tools" ></slot>
    <div class=="entry">
     <slot name="entry"><slot>
    </div>
 </div>

我们写了两个插槽一个名字叫工具插槽tools,这里面就放一些工具方法。
还有一个名字叫额外的插槽entry,一些额外的数据就放在这里面,下面看看如何使用

  <children>
   <template #tools>
    <ul>
      <li>复制</li>
      <li>分享</li> 
      <li>退出</li>
    </ul>
   </template>

    <template #entry>
      <button>点我有惊喜</button>
   </template>
    </children>

这样就可以在你想要的位置插入不同的内容了。

还有一个问题,不知道大家有没有看过ant-desgin一个组件的用法比如表格组件

 <template #bodyCell="{ column, text }">
      <template v-if="column.dataIndex === 'name'">{{ text.first }} {{ text.last }}</template>
    </template>

这里面的#bodyCell="{ column, text }" 又是什么呢,bodyCell大家都知道是插槽名,那后面的呢,
{ column, text }是参数

 <slot name="tools" :item="id"></slot>
 const id = 1

我们用时

  <children>
  <template #tools="{item}">
   <p>{{item}}</p>
  </template>
    </children>

这样我们就可以取到item的值是1

  • 3
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Vue中,插槽slot)是一种用于组件之间内容分发的机制。它允许父组件向子组件传递内容,使得子组件可以根据需要展示不同的内容。插槽可以用于传递任意类型的内容,包括HTML、文本和其他组件。 Vue中的插槽有三种使用方式:slotslot-scope和v-slot。 1. slotslot标签是最基本的插槽使用方式。父组件可以在子组件的slot标签中放置内容,这些内容将会替换子组件中具名插槽的位置。例如: ```html <!-- 父组件 --> <template> <child-component> <template v-slot:header> <h1>这是标题</h1> </template> </child-component> </template> <!-- 子组件 --> <template> <div> <slot name="header"></slot> <!-- 其他子组件内容 --> </div> </template> ``` 上述代码中,父组件在子组件的插槽中放置了一个标题,子组件通过`<slot name="header"></slot>`来展示这个插槽的内容。 2. slot-scope:slot-scope指令用于在插槽中接收父组件传递的数据。通过这种方式,子组件可以访问父组件的数据,并在插槽中进行处理。例如: ```html <!-- 父组件 --> <template> <child-component> <template v-slot:default="slotProps"> <h1>{{ slotProps.title }}</h1> <p>{{ slotProps.content }}</p> </template> </child-component> </template> <!-- 子组件 --> <template> <div> <slot :title="title" :content="content"></slot> <!-- 其他子组件内容 --> </div> </template> <script> export default { data() { return { title: '这是标题', content: '这是内容' }; } }; </script> ``` 在上述代码中,父组件通过`v-slot:default="slotProps"`将数据传递给子组件的插槽,并在插槽中使用`slotProps`来访问这些数据。 3. v-slot:v-slot指令是Vue2.6版本及以上引入的新特性,用于简化插槽的语法。它可以直接在子组件上使用,而不需要使用template标签。例如: ```html <!-- 父组件 --> <template> <child-component> <template #header> <h1>这是标题</h1> </template> </child-component> </template> <!-- 子组件 --> <template> <div> <slot name="header"></slot> <!-- 其他子组件内容 --> </div> </template> ``` 在上述代码中,父组件使用`#header`来定义插槽,并在子组件中使用`<slot name="header"></slot>`来展示插槽的内容。 总结一下,slot用于定义插槽的位置,slot-scope用于接收父组件传递的数据,并在插槽中进行处理,v-slot是对插槽语法的简化。这些插槽的使用方式可以根据具体需求选择适合的方式。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值