Detailed explanation of non-parent-child component communication in Vue3

Detailed explanation of non-parent-child component communication in Vue3

The business scenario is that it is not the parent-child components that communicate

File Directory

insert image description here

First method

App.vue

<template>
  <div>
    <Home></Home>
    <button @click="addName">Add name</button>
  </div>
</template>
 <script>
import Home from "./Home.vue";
import { computed } from "vue";
export default {
  name: "App",
  components:
    Home,
  },
  provide() {
    return {
      name: "Zhang San",
      age: 23,
      length: computed(() => this.names.length),
    };
  },
  data() {
    return {
      names: ["Zhang San", "Li Si", "Wang Wu"],
    };
  },
  methods: {
    addName() {
      this.names.push("fuck you");
      console.log("hhhh");
    },
  },
};
</script>
 <style scoped>
</style>

Home.vue

<template>
  <div>
    <div>I am home</div>
    <home-content></home-content>
  </div>
</template>
 <script>
import HomeContent from "./HomeContent.vue";
export default {
  name: "Home",
  components:
    HomeContent,
  },
};
</script>
 <style scoped>
</style>

HomeContent.vue

<template>
  <div>HomeContent:{{ name }}--{{ age }}---{{ length }}</div>
</template>
 <script>
export default {
  inject: ["name", "age", "length"],
};
</script>
 <style lang="scss" scoped>
</style>

Use Provide function and Inject function in vue3

In fact, we have learned Provide and Inject before. Composition API can also replace the previous Provide and Inject options.

We can provide data through provide:

Provide can pass in two parameters:

name : the provided attribute name;

value : the attribute value provided;

insert image description here

In the descendant components, you can use inject to inject the required properties and corresponding values:

You can use inject to inject the required content;

Inject can pass in two parameters:

The name of the property to be injected;

default value;

insert image description here

Responsiveness of data

To add responsiveness between provided values ​​and injected values, we can use ref and reactive when providing values.

Modifying Responsive Properties

If we need to modify responsive data, it is best to modify it where the data is provided: we can share the modification method and call it in descendant components;

Notice

If our subcomponent should be a state that can only be used and cannot be modified

insert image description here

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:
  • Summary of non-parent-child component value transfer knowledge points in Vue component communication
  • Vue non-parent-child component communication problem and solution
  • Analysis of non-parent-child component communication in event bus in Vue
  • How to use Bus.js in Vue2 to achieve non-parent-child component communication
  • Detailed explanation of Vue non-parent-child component communication
  • Do you understand the communication between non-parent-child components in Vue?

<<:  SQL Optimization Tutorial: IN and RANGE Queries

>>:  How to implement HTML to detect that input is complete and automatically fill in the next content

Recommend

How to display the border when td is empty

Previously, I summarized how to use CSS to achieve...

Vue3 draggable left and right panel split component implementation

Table of contents Breaking down components Left P...

CSS polar coordinates example code

Preface The project has requirements for charts, ...

JavaScript implements draggable modal box

This article shares the specific code of JavaScri...

Vue implements an example of pulling down and scrolling to load data

Table of contents Step 1: Installation Step 2: Ci...

What are the advantages of using B+ tree index in MySQL?

Before understanding this problem, let's firs...

Move MySQL database to another disk under Windows

Preface Today I installed MySQL and found that th...

Implementing file content deduplication and intersection and difference in Linux

1. Data Deduplication In daily work, there may be...

CentOS 6.4 MySQL 5.7.18 installation and configuration method graphic tutorial

The specific steps of installing mysql5.7.18 unde...

SQL Server database error 5123 solution

Because I have a database tutorial based on SQL S...

Use docker to deploy tomcat and connect to skywalking

Table of contents 1. Overview 2. Use docker to de...