The business scenario is that it is not the parent-child components that communicate File Directory First methodApp.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: 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; Responsiveness of data
Modifying Responsive PropertiesIf 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 SummarizeThis 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:
|
<<: SQL Optimization Tutorial: IN and RANGE Queries
Previously, I summarized how to use CSS to achieve...
CentOS7 is used here, and the kernel version is [...
Since I often install the system, I have to reins...
Table of contents Breaking down components Left P...
Preface The project has requirements for charts, ...
This article shares the specific code of JavaScri...
Table of contents Step 1: Installation Step 2: Ci...
Before understanding this problem, let's firs...
The full name of SSH is Secure SHell. By using SS...
Preface Today I installed MySQL and found that th...
1. Data Deduplication In daily work, there may be...
The specific steps of installing mysql5.7.18 unde...
I slept late yesterday and was awake the whole da...
Because I have a database tutorial based on SQL S...
Table of contents 1. Overview 2. Use docker to de...