Detailed explanation of non-parent-child component value transfer in Vue3

Detailed explanation of non-parent-child component value transfer in Vue3
The value transmission of non-parent-child components in vue2 is mainly through the event bus, creating a vue instance, and implementing the communication behavior between non-parent-child components by importing the instance in different components.
Vue3 provides **provide** and **inject** properties, which can realize communication between non-parent-child components;
Suppose there are three components: App.vue (parent), sub1 (child), sub2 (child of child):

App.vue

<template>
  <div style="border: 1px solid pink">
    <h1>I am your father</h1>
    👇
    <sub1/>
  </div>
</template>
<script>
  import sub1 from './sub1'
	export default {
		name: "App",
    components:{
			sub1,
    },
    provide:{ // Define provide in the parent component to declare the value to be passed names:['peanut','javascriptKing']
    }
	}
</script>
<style scoped>
</style>

sub1.vue

<template>
  <h2>I am a first-level child component</h2>
  👇
  <sub2/>
</template>
<script>
  import sub2 from "./sub2";
	export default {
		name: "sub1",
    components:{
			sub2,
    }
	}
</script>
<style scoped>
</style>

sub2.vue

<template>
  <h3>I am the youngest, the grandson</h3>
  <div>I referenced the names array of the top-level component ===> {{names}}</div>
</template>
<script>
	export default {
		name: "sub2",
    // Accept a cross-level value in the child component through inject:['names'],
	}
</script>
<style scoped>
</style>

The implementation effect is as follows, you can see that the value passed in the top-level component can be obtained normally:

insert image description here

But there are also problems:

That is, when the value that the top-level component wants to pass changes, how can we make it responsive?

How to get the current instance through this in the provide property?

Here you need to write the provide attribute as a method and return an array or object:

<template>
  <div style="border: 1px solid pink">
    <h1>I am your father</h1>
    👇
    <sub1/>
  </div>
</template>
<script>
  import sub1 from './sub1'
	export default {
		name: "App",
    data(){
			return {
				names:['peanut','javascriptKing']
      }
    },
    components:{
			sub1,
    },
    /*Writing this way will not get this. At this time, this only means that the scope this in the script is undefined*/
    /*provide:{
			this.names,
    }*/
  // Should be written like this provide(){
    	return {
    		names:this.names
      }
    }
	}
</script>
<style scoped>
</style>

As written above, although we can get the data under the instance pointed to by this, how can we make them form a dependency and achieve responsiveness? To do this, we need to make the following changes to App.vue:

<template>
  <div style="border: 1px solid pink">
    <h1>I am your father</h1>
    👇
    <sub1/>
  </div>
</template>
<script>
  import sub1 from './sub1'
  import { computed } from 'vue'
	export default {
		name: "App",
    data(){
			return {
				names:['peanut','javascriptKing']
      }
    },
    components:{
			sub1,
    },
    /*Writing this way will not get this. At this time, this only means that the scope this in the script is undefined*/
    /*provide:{
			this.names,
    }*/
  // Should be written like this provide(){
    	return {
    		names:computed(() =>{ this.names.length }) // Use the calculated property to return the variable so that names forms a dependency relationship with the names in data}
    },
    mounted() {
    	setInterval(()=>{
    		this.names.push('vue king!')
      },1000)
    }
	}
</script>
<style scoped>
</style>

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:
  • Detailed explanation of several ways to communicate and pass values ​​between components in Vue
  • How do you know how to pass values ​​between Vue components?
  • Detailed explanation of value transfer between parent and child components in Vue3
  • Detailed explanation of Vue parent-child component value transfer and one-way data flow issues
  • A brief discussion on value transfer between Vue components (including Vuex)
  • Super simple and easy to understand vue component value transfer

<<:  How to strike a balance between ease of use and security in the login interface

>>:  A brief analysis of the underlying principles of MySQL transactions and isolation levels

Recommend

Detailed examples of how to use the box-shadow property in CSS3

There are many attributes in CSS. Some attributes...

Detailed explanation of nginx request header data reading process

In the previous article, we explained how nginx r...

Detailed explanation of Nodejs array queue and forEach application

This article mainly records the problems and solu...

Solution to MySQL unable to read table error (MySQL 1018 error)

1. Error reproduction I can access the MySQL data...

Summary of Vue 3 custom directive development

What is a directive? Both Angular and Vue have th...

Example of how to optimize MySQL insert performance

MySQL Performance Optimization MySQL performance ...

How to use xshell to connect to Linux in VMware (2 methods)

【Foreword】 Recently I want to stress test ITOO...

How to create a web wireframe using Photoshop

This post introduces a set of free Photoshop wire...

Detailed explanation of common template commands in docker-compose.yml files

Note: When writing the docker-compose.yml file, a...

Detailed explanation of the watch listener example in vue3.0

Table of contents Preface The difference between ...

MySQL aggregate function sorting

Table of contents MySQL result sorting - Aggregat...

A brief discussion on the design of Tomcat multi-layer container

Table of contents Container Hierarchy The process...

How to generate PDF and download it in Vue front-end

Table of contents 1. Installation and introductio...

Implementation of react automatic construction routing

Table of contents sequence 1. Centralized routing...