Detailed explanation of slots in Vue

Detailed explanation of slots in Vue

The reuse of code in vue provides us with mixnis. The reuse of templates provides us with slots.

Slot Classification

Default Slots

Named Slots

Scoped Slots

When we only need to insert an HTML tag in our component, we can use the default slot.

If there are multiple, we need to give the first slot a name to decide which slot to insert it into.

When we want to use data from a component in our slot, we may use a scoped slot.

The following shows the usage of the default slot

insert image description here

When using

insert image description here

The above is the use of the default slot

Named slots, that is, we define one or more slots in a component, and in order to distinguish which one is acting on it, give the slot a name to distinguish

insert image description here

When using

insert image description here

Here I would like to say that Vue 2.6 version has a new way of writing slots, which uses the template tag. We know that template is just a wrapping tag, it will not be rendered on the real page. The new way of writing slots uses it. It is not enough without it, as shown below

insert image description here

Let's talk about scoped slots.

Let's take a look at the data displayed by the two slots above. They are all placed in the data of the About component, the user of the slot.

But sometimes, users don't care about these data, and the data is obtained from the category component itself.

The user About only needs to manage the presentation of the content in the slot.

This is where scoped slots come in handy

insert image description here

In the above figure, you can see that two data are passed to the user in the scope slot

How did the user receive it?

insert image description here

The above are the three types of slots used in Vue

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of the usage of scoped slots in Vue.js slots
  • Detailed explanation of Vue scope slot implementation method and function
  • Detailed explanation of how to use Vue anonymous, named and scoped slots
  • Detailed explanation of using slots and clustered slots in Vue
  • Detailed explanation of vue2.6 slot update v-slot usage summary
  • Detailed explanation of scoped slots of Vue components

<<:  HTML table tag tutorial (25): vertical alignment attribute VALIGN

>>:  Implementation of Docker private library

Recommend

How to run sudo command without entering password in Linux

The sudo command allows a trusted user to run a p...

How to recover files accidentally deleted by rm in Linux environment

Table of contents Preface Is there any hope after...

The button has a gray border that is ugly. How to remove it?

I used the dialog in closure and drew a dialog wit...

Summary of methods for writing judgment statements in MySQL

How to write judgment statements in mysql: Method...

Notes on MySQL case sensitivity

Table of contents MySQL case sensitivity is contr...

CSS to achieve Skeleton Screen effect

When loading network data, in order to improve th...

JavaScript implementation of carousel example

This article shares the specific code for JavaScr...

Analysis of the principles of Mysql dirty page flush and shrinking table space

mysql dirty pages Due to the WAL mechanism, when ...

How to allow all hosts to access mysql

1. Change the Host field value of a record in the...

A brief analysis of the basic concepts of HTML web pages

What is a web page? The page displayed after the ...

Example of deploying Laravel application with Docker

The PHP base image used in this article is: php:7...

Let's talk in depth about the principle and implementation of new in JS

Table of contents definition Constructor bodies a...

Optimizing JavaScript and CSS to improve website performance

<br /> In the first and second parts, we int...

Web development tutorial cross-domain solution detailed explanation

Preface This article mainly introduces the cross-...