search
HomeWeb Front-endVue.jsWhat is a slot? Let's talk about how to use slots in Vue3

What is a slot? Let's talk about how to use slots in Vue3

Vue I believe that everyone who has used Vue has used the slots more or less, but do you know all its uses? This article will bring you all the usage of slots in Vue3 to help you find and fill gaps. (Learning video sharing: vue video tutorial)

What is a slot

Simply speaking, it is the provided in the sub-component A pit used by the parent component, represented by <slot></slot>. The parent component can fill in any template code in this pit and then ## in the child component #<slot></slot> will be replaced with these contents. For example, in the simplest slot example

//父组件
<template>
  <div>
    <child>Hello Juejin</child>
  </div>
</template>
<script>
import Child from &#39;./Child.vue&#39;
</script>

//子组件Child
<template>
    <div>
        <p>1</p>
        <slot></slot>
        <p>2</p>
    </div>
</template>
, the

<slot></slot> in the child component is the parent component placed between the child component tag the content of the space. Of course, you can pass in any code snippet during this period, and it will be placed in the <slot></slot> position.

What is a slot? Lets talk about how to use slots in Vue3##Similarly, you can also put variables between the tags

, such as <pre class="brush:php;toolbar:false">//父组件 &lt;template&gt;   &lt;div&gt;     &lt;child&gt;{{ msg }}&lt;/child&gt;   &lt;/div&gt; &lt;/template&gt; &lt;script&gt; import { ref } from &amp;#39;vue&amp;#39; import Child from &amp;#39;./Child.vue&amp;#39; const msg = ref(&amp;#39;Hello Juejin&amp;#39;) &lt;/script&gt;</pre> Let me explain the following first The two words that appear frequently

slot

and slot content prevent confusion in subsequent readings:

What is a slot? Lets talk about how to use slots in Vue3Same

Slot

represents this msg variable. Therefore, the child component slot can access the data scope of the parent component, while slot content cannot access the data of the child component (that is, the two &lt in the parent component Data in child components cannot be used between ;Child>), this is the so-called rendering scope. The method of slot passing parameters to slot content will be introduced later

Default content

is not provided in the parent component When any

slot content

is specified, we can specify the default content for the slot of the child component, such as <pre class="brush:php;toolbar:false">//子组件 &lt;template&gt;     &lt;div&gt;         &lt;slot&gt;我是默认内容&lt;/slot&gt;     &lt;/div&gt; &lt;/template&gt; //父组件1 &lt;template&gt;   &lt;div&gt;     &lt;child&gt;&lt;/child&gt;   &lt;/div&gt; &lt;/template&gt; &lt;script&gt; import Child from &amp;#39;./Child.vue&amp;#39; &lt;/script&gt; //父组件2 &lt;template&gt;   &lt;div&gt;     &lt;child&gt;Hello Juejin&lt;/child&gt;   &lt;/div&gt; &lt;/template&gt; &lt;script&gt; import Child from &amp;#39;./Child.vue&amp;#39; &lt;/script&gt;</pre>at this time

parent component 1

Display default content

What is a slot? Lets talk about how to use slots in Vue3

Parent component 2

Display provided content

What is a slot? Lets talk about how to use slots in Vue3

NamedSlot

Many times one

slot

cannot meet our needs, we need multiple slots. So there is named slot, which is a slot with a name. To put it simply, the purpose of this Named Slot is to trap a carrot and let them stay where they should. For example, a slot with name <slot name="xx"></slot> is called a named slot. <slot></slot> for which name is not provided will be implicitly named "default". In the parent component, you can use the v-slot:xxx (can be abbreviated as #xxx) directive's <template></template> element to pass the name of the target slot. Go down and match the corresponding slot. For example, <pre class="brush:php;toolbar:false">//子组件 &lt;template&gt;     &lt;div&gt;         &lt;!-- 大萝卜 --&gt;         &lt;div&gt;             &lt;slot&gt;&lt;/slot&gt;         &lt;/div&gt;         &lt;!-- 小萝卜 --&gt;         &lt;div&gt;             &lt;slot&gt;&lt;/slot&gt;         &lt;/div&gt;         &lt;!-- 中萝卜 --&gt;         &lt;div&gt;             &lt;slot&gt;&lt;/slot&gt;         &lt;/div&gt;     &lt;/div&gt; &lt;/template&gt; //父组件 &lt;template&gt;   &lt;div&gt;     &lt;child&gt;       &lt;!-- #smallTurnip 为v-slot:smallTurnip缩写 --&gt;       &lt;template&gt;         小萝卜       &lt;/template&gt;       &lt;template&gt;         中萝卜       &lt;/template&gt;       &lt;template&gt;         大萝卜       &lt;/template&gt;     &lt;/child&gt;   &lt;/div&gt; &lt;/template&gt; &lt;script&gt; import Child from &amp;#39;./Child.vue&amp;#39; &lt;/script&gt;</pre>

What is a slot? Lets talk about how to use slots in Vue3So there is no need to care about the order in the parent component. You only need to write the template and name it, and it will automatically go to its corresponding location.

Dynamic slot name

The dynamic slot name is the slot name in the form of a variable. We can modify this variable at any time to show different effects. It is written as

v-slot:[variable name]

or abbreviated as #[variable name]. <pre class="brush:php;toolbar:false">//父组件 &lt;template&gt;   &lt;div&gt;     &lt;child&gt;       &lt;!-- 等同于#smallTurnip --&gt;       &lt;template&gt;         小萝卜       &lt;/template&gt;       &lt;template&gt;         中萝卜       &lt;/template&gt;       &lt;template&gt;         大萝卜       &lt;/template&gt;     &lt;/child&gt;   &lt;/div&gt; &lt;/template&gt; &lt;script&gt; import { ref } from &amp;#39;vue&amp;#39; import Child from &amp;#39;./Child.vue&amp;#39; const slotName = ref(&amp;#39;smallTurnip&amp;#39;) &lt;/script&gt;</pre>

Scope slot

Scope slot

Said above

Slot content

It is impossible to access the data of subcomponents, but what if we want to access the status of subcomponents in Slot content? In fact,

slot

can be passed to the slot tag by binding properties to the slot content## in the parent component just like passing props to the component. #. First, let’s look at the value transfer method of the default slot

//子组件
<template>
    <div>
        <slot></slot>
    </div>
</template>

//父组件

<template>
  <div>
    <child>
      My name is {{ slotProps.personName }} and I am {{ slotProps.age }} years old this year
    </child>
  </div>
</template>
<script>
import Child from &#39;./Child.vue&#39;
</script>
You can also get the data provided by slot in the form of a structure

<template>
  <div>
    <child>
      My name is {{ personName }} and I am {{ age }} years old this year
    </child>
  </div>
</template>

注意不能绑定name属性,因为你绑定了name它就成了具名插槽了。同样具名插槽中的name属性也不会传递给插槽内容。因为传递的参数只能在插槽内容中使用,所以这类能够接受参数的插槽就被称为了作用域插槽

具名作用域插槽

下面再看下具名作用域插槽它的传参方式。它接收参数的方式是通过template标签的指令v-slot的值获取的,所以可以缩写成这样

//父组件
<template>
  <div>
    <child>
      <template>
        {{ bigTurnipProps.message }}
      </template>
    </child>
  </div>
</template>
<script>
import Child from &#39;./Child.vue&#39;
</script>

//子组件Child.vue

<template>
    <div>
        <!-- 大萝卜 -->
        <div>
            <slot></slot>
        </div>
    </div>
</template>

What is a slot? Lets talk about how to use slots in Vue3

这类插槽便是具名作用域插槽

写在最后

到这里插槽(slot)的全部用法基本就已经介绍完啦。如果感觉对你有用的话赶紧点赞收藏吧!

(学习视频分享:web前端开发编程基础视频

The above is the detailed content of What is a slot? Let's talk about how to use slots in Vue3. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

Vue中如何使用v-slot默认插槽Vue中如何使用v-slot默认插槽Jun 11, 2023 am 09:27 AM

Vue是一款流行的前端框架,它提供了众多的指令帮助我们更好的进行开发。其中,v-slot是一个非常重要的指令,它可以让我们更加灵活地组合组件,提升代码的可读性和复用性。默认插槽是v-slot中的一种插槽类型,使用默认插槽可以将父组件中的HTML结构传递到子组件中,让子组件可以将其作为自己的子元素渲染。本文将向大家详细介绍Vue中如何使用v-

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

VSCode插件分享:一个实时预览Vue/React组件的插件VSCode插件分享:一个实时预览Vue/React组件的插件Mar 17, 2022 pm 08:07 PM

在VSCode中开发Vue/React组件时,怎么实时预览组件?本篇文章就给大家分享一个VSCode 中实时预览Vue/React组件的插件,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)