Basic usage examples of Vue named slots

Basic usage examples of Vue named slots

Preface

Named slots are bound to elements using the "name" attribute in the slot.

Notice:

1. If no match is found, put it in an anonymous slot

2. The rendering order of named slots depends entirely on the template, not on the order of elements in the parent component

Vue's anonymous slot (default slot)

Parent Component

<div>
 <myslot>I just now</myslot>
</div>

Subcomponents

<div>
 <slot><slot>
</div>

Vue's named slots

Parent Component

<div>
 <myslot>
  <template #one>Piggy is a big fat cat</template>
  <template #two>They are all big assholes</template>
  <template #three>Mimi is a heartless little bastard</template>
  I just now
</div>

Subcomponents

<div>
 <slot name="one"></slot>
 <slot><slot>
 <slot name="two"></slot>
 <slot name="three"></slot>
</div>

Rendered (in approximate order) is

vue scoped slots

Explain scope slots in plain language: parent components can read the data carried by the corresponding slots of child components through slots.

<div>
	<myslot>
		<template #oneData="oneData">
			<div>{{oneData.one.message}}</div>
		</template>
		<template #two>They are all big assholes</template>
		<template #three>Mimi is a heartless little bastard</template>
		I just </myslot>
</div>

Subcomponents

<div>
 <slot name="one" :data='one'></slot>
 <slot><slot>
 <slot name="two"></slot>
 <slot name="three"></slot>
</div>

<script>
 export default {
  data() {
   return {
    one: {
     message: 'This is the data message of the subcomponent',
       },
   };
  },
 }
</script>

Code Optimization

<div>
 <myslot>
  <template #oneData="{oneData}">
   <div>{{oneData.message}}</div>
  </template>
  <template #two>They are all big assholes</template>
  <template #three>Mimi is a heartless little bastard</template>
  I just now
</div>

Subcomponents

<div>
 <slot name="one" :oneData='one'></slot>
 <slot><slot>
 <slot name="two"></slot>
 <slot name="three"></slot>
</div>

<script>
 export default {
  data() {
   return {
    one: {
     message: 'This is the data message of the subcomponent',
       },
   };
  },
 }
</script>

Summarize

This is the end of this article about the basic use of vue named slots. For more relevant vue named slot content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Understanding and example code of Vue default slot
  • Detailed explanation of anonymous slots and named slots in Vue
  • Vue uses slots to distribute content operation examples [single slot, named slot, scoped slot]
  • Detailed explanation of how to use Vue anonymous, named and scoped slots
  • Detailed explanation of the usage of scoped slots in Vue.js slots
  • About VUE's compilation scope and slot scope slot issues
  • Detailed explanation of Vue scope slot implementation method and function
  • Vue default slot, named slot, scope slot definition and usage

<<:  Detailed explanation of two methods for setting global variables and session variables in MySQL

>>:  Do you know how many connections a Linux server can handle?

Recommend

Several ways to solve CSS style conflicts (summary)

1. Refine the selector By using combinators, the ...

Detailed process of using nginx to build a webdav file server in Ubuntu

Install nginx Note that you must install nginx-fu...

MySQL 8.0.23 free installation version configuration detailed tutorial

The first step is to download the free installati...

Several ways to center a box in Web development

1. Record several methods of centering the box: 1...

Steps to deploy Spring Boot project using Docker

Table of contents Create a simple springboot proj...

vitrualBox+ubuntu16.04 install python3.6 latest tutorial and detailed steps

Because I need to use Ubuntu+Python 3.6 version t...

Complete steps to build NFS file sharing storage service in CentOS 7

Preface NFS (Network File System) means network f...

Summary of four ways to loop through an array in JS

This article compares and summarizes four ways of...

A brief discussion on the implementation principle of Webpack4 plugins

Table of contents Preface know Practice makes per...

MySQL complete collapse query regular matching detailed explanation

Overview In the previous chapter, we learned abou...

Share 9 Linux Shell Scripting Tips for Practice and Interviews

Precautions 1) Add interpreter at the beginning: ...

Brief analysis of the introduction and basic usage of Promise

Promise is a new solution for asynchronous progra...