Detailed explanation of two points to note in vue3: setup

Detailed explanation of two points to note in vue3: setup

In vue2

Passing properties from parent component to child component

insert image description here

Subcomponents receive properties

insert image description here

insert image description here

If it is not received, it needs to be received in $attrs. The disadvantage is that there is no restriction on the type, and the name is relatively long when used.

insert image description here

insert image description here

The name is longer when used

insert image description here

Vue2, parent component uses slots in child components

insert image description here

insert image description here

Print the contents of a slot

insert image description here

If the parent component uses 2 slots of the child component

insert image description here

insert image description here

Parent component uses named slots in child components

insert image description here

insert image description here

In vue3

Notes on setup

insert image description here

The setup life cycle is before beforecreated

insert image description here
insert image description here

setup can get two parameters, props and context

Pass 2 properties to the child component

insert image description here

insert image description here

insert image description here

Print context

insert image description here

insert image description here

context.attrs

Similar to vue2, if only part is declared, the rest is in the attrs attribute

insert image description here

insert image description here

context.emit

Add listener events to child components

insert image description here

insert image description here

context.slot

insert image description here

insert image description here

insert image description here

If you pass a named slot

insert image description here

Or (recommended)

insert image description here

Print

insert image description here

If you pass 2 named slots

insert image description here

insert image description here

Summarize

insert image description here

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:
  • Highly recommended! Setup syntax sugar in Vue 3.2
  • Detailed explanation of props and context parameters of SetUp function in Vue3
  • Application example of setup-script in vue3
  • Detailed explanation of the usage of setUp and reactive functions in vue3
  • Vue3 setup() advanced usage examples detailed explanation
  • Front-end vue3 setup tutorial

<<:  Solve the mobile terminal jump problem (CSS transition, target pseudo-class)

>>:  Solution to the automatic termination of docker run container

Recommend

Analysis of several situations where MySQL index fails

1. Best left prefix principle - If multiple colum...

How to install MySQL 5.7 on Ubuntu and configure the data storage path

1. Install MySQL This article is installed via AP...

js+css to realize three-level navigation menu

This article example shares the specific code of ...

Apache Log4j2 reports a nuclear-level vulnerability and a quick fix

Apache Log4j2 reported a nuclear-level vulnerabil...

Typescript+react to achieve simple drag and drop effects on mobile and PC

This article shares the specific code of typescri...

Html Select uses the selected attribute to set the default selection

Adding the attribute selected = "selected&quo...

JavaScript canvas realizes the effect of nine-square grid cutting

This article shares the specific code of canvas t...

Pure CSS3 to achieve mouse over button animation Part 2

After the previous two chapters, do you have a ne...

Let's talk about the characteristics and isolation levels of MySQL transactions

The Internet is already saturated with articles o...

How to write a MySQL backup script

Preface: The importance of database backup is sel...

WeChat applet realizes the effect of swiping left to delete list items

This article shares the specific code for WeChat ...