search
HomeWeb Front-endVue.jsHow to use provide/inject in Vue to pass data across multiple layers of ancestors and descendants

Vue provides an efficient data transfer method - provide/inject, which can help us transfer data between ancestors and descendants across multiple layers, avoiding cumbersome props transfer. This article will introduce how to use provide/inject in Vue to achieve data transfer across multiple layers of ancestors and descendants.

1. Provide and inject

provide and inject are new APIs after Vue2.2.0 version, used to realize data transfer across multi-layer components. provide allows a component to inject a dependency into all its descendant components, and inject can receive this dependency and use it.

provide and inject are mainly used for high-order plug-in/component libraries, such as element-ui. In element-ui, its components all depend on a top-level component library. This component library needs to provide some public variables and methods to all sub-components. Provide and inject are used to transfer these data.

2. The use of provide and inject

Using provide in a component, we can provide an injection point for child components so that they can obtain the data provided by the parent component. For example:

// 父组件
export default {
  provide () {
    return {
      theme: this.theme
    }
  },
  data () {
    return {
      theme: 'light'
    }
  }
}

// 子组件
export default {
  inject: ['theme'],
  mounted () {
    console.log(this.theme) // light
  }
}

In the above example, the parent component uses provide to provide data and expose the data object to descendant components. The data here is a string type. The way to provide is to use the provide function. According to the official documentation of provide, the return value of this function is an object. The key in the object can be used when injecting descendants, and the value is the data to be injected, which can be a variable, function, etc.

Using inject in child components, we can receive data provided by parent components. For example:

export default {
  inject: ['theme'],
  mounted () {
    console.log(this.theme) // light
  }
}

In the example, the child component receives data using the inject option in the component options. "inject: [key]" where key is the key of the data object to be exposed in the parent component. The key here is consistent with the one provided by the provide function. It is worth noting that by default, the dependency will be searched for in the parent. If you do not want to search in the parent, you need to set srcoll in the inject to false. Only data provided by the parent component can be injected by the child component.

3. Notes on provide and inject

  1. The data injected by provide can be used in descendant components, but not in its parent component.

In the mechanism of provide and inject, the data provided by provide can be injected into descendant components by inject. However, if inject is also used in the parent component to receive data, it will not take effect because inject will look for the provided data in the parent component by default, and Vue will not look in the parent component to be consistent with the descendant components. provide.

  1. Do not use arrow functions in provide to return data.

provide needs to return an object to provide data, so we often use arrow functions to return an object, for example:

export default {
  provide: () => ({
    theme: 'light'
  })
}

However, in most cases we do not use arrows function to provide data, because arrow functions do not point to this. When using arrow functions in provide it does not get the correct context and it does not respond to data changes.

  1. It is not recommended to use names starting with the $ symbol in provide and inject.

Naming that starts with the $ symbol in provide and inject is a naming rule reserved by Vue, so we do not recommend using the $ symbol to start the provided data. Using names starting with the $ symbol in provide may cause some problems, while using names starting with the $ symbol in inject will be ignored.

4. Usage Scenarios

The main purpose of provide/inject is to build a component library across component levels. Specifically, multiple components share some of the same information or status, such as theme color, language, etc.

In the actual development process, a scenario can be easily imagined: in an App or a page, there may be many similar components. These components need to use the same state or method. We can use provide /inject to pass these shared information and status across levels, avoiding redundant code and duplication of work.

At the same time, we can also use mixins to avoid code duplication and code redundancy, making our code elegant, clean and easy to maintain.

5. Summary

Using provide/inject is an efficient data transfer method, which can help us realize data transfer across multiple layers of ancestors and descendants, and reduce the use of props. However, it should be noted that there are some precautions to follow when using provide/inject to avoid affecting the performance and correctness of the component. At the same time, actual application requires detailed analysis of scenarios and reasonable use of provide/inject, props, or vuex for data transfer.

The above is the detailed content of How to use provide/inject in Vue to pass data across multiple layers of ancestors and descendants. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),