Detailed explanation of data sharing between Vue components

Detailed explanation of data sharing between Vue components

1. In project development, the most common relationships between components are divided into the following two types:

1. Father-son relationship

2. Brotherly Relationship

1.1 Data sharing between parent and child components

Data sharing between parent and child components is divided into:

1. Parent->Child Shared Data

Subcomponents:

insert image description here

Parent component:

insert image description here

2. Child->Parent Shared Data

Child components share data with parent components using custom events. The sample code is as follows

Subcomponents:

insert image description here

Parent component:

insert image description here

The page displays the results:

insert image description here

1.2 Data sharing between sibling components

In vue2.x, the solution for sharing data between sibling components is EventBus

EventBus usage:

  • Create the eventBus.js module and share a Vue instance object
  • On the data sender, call bus.$emit('event name', data to be sent) method to trigger a custom event
  • On the data receiving side, call bus.$on('event name', event handling function) method to register a custom event

Example:

1. Create the eventBus.js module and share a Vue instance object

insert image description here

2. On the data sender, call bus.$emit('event name', data to be sent) method to trigger a custom event

insert image description here

3. On the data receiver side, call bus.$on('event name', event processing function) method to register a custom event

insert image description here

Summarize

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

You may also be interested in:
  • Let's learn about Vue's life cycle
  • Detailed explanation of Vue3 life cycle hook function
  • A brief discussion on the life cycle of Vue
  • Vue local component data sharing Vue.observable() usage
  • Vue implements data sharing and modification operations between two components
  • Detailed explanation of Vue life cycle and data sharing

<<:  The process of installing Docker on Windows Server 2016 and the problems encountered

>>:  Html Select option How to make the default selection

Recommend

Vue component organization structure and component registration details

Table of contents 1. Component Organization 2. Co...

How to find the specified content of a large file in Linux

Think big and small, then redirect. Sometimes Lin...

In-depth understanding of the use of the infer keyword in typescript

Table of contents infer Case: Deepen your underst...

Explaining immutable values ​​in React

Table of contents What are immutable values? Why ...

Understanding and application scenarios of enumeration types in TypeScript

Table of contents 1. What is 2. Use Numeric Enume...

Tutorial on installing Ubuntu 20.04 and NVIDIA drivers

Install Ubuntu 20.04 Install NVIDIA drivers Confi...

Teach you about react routing in five minutes

Table of contents What is Routing Basic use of pu...

Set the input to read-only via disabled and readonly

There are two ways to achieve read-only input: dis...

In-depth explanation of MySQL learning engine, explain and permissions

engine Introduction Innodb engine The Innodb engi...

Detailed explanation of how to view MySQL memory usage

Preface This article mainly introduces the releva...

How to deploy and start redis in docker

Deploy redis in docker First install Docker in Li...

Ideas and codes for implementing waterfall flow layout in uniapp applet

1. Introduction Is it considered rehashing old st...

Detailed introduction to CSS priority knowledge

Before talking about CSS priority, we need to und...

Summary of MySQL slow log related knowledge

Table of contents 1. Introduction to Slow Log 2. ...

jQuery plugin to achieve seamless carousel

Seamless carousel is a very common effect, and it...