search
HomeWeb Front-endJS TutorialHow does a subcomponent in Vue get the value of its parent component? (props implementation)

How to transfer data from parent component to child component in vue? The scope of component instances is isolated. This means that the parent component's data cannot be referenced directly within the child component's template. The data of the parent component needs to be sent to the child component through props. That is, props are the only interface for child components to access parent component data. Therefore, child components need to use props to reference parent components.

That is, props is the only interface for child components to access parent component data.

A detailed explanation is:

A component can directly render the data in the template (double curly brackets).

Subcomponent cannot directly render the data of the parent element in the template.

If the child component wants to reference the data of the parent element, then declare a variable (such as a) in prop, and this variable can reference the data of the parent element. Then render this variable (the previous a) in the template, and what is rendered at this time is the data in the parent element.

1. Basic usage

As shown in the figure:

    <p id="app1">
        <!-- hello引用父元素的hello,它也可以引用message,greet,world等 -->
        <child :hello=&#39;hello&#39;></child>
    </p>
    <script>
        var com1 = Vue.component(&#39;child&#39;,{
            // 声明在prop中的变量可以引用父元素的数据
            props:[&#39;hello&#39;],
           // 这里渲染props中声明的那个hello
            template:&#39;<p><p>{{ hello }}</p></p>&#39;,
        })

        var app1 = new Vue ({
            el: &#39;#app1&#39;,
            data: {
                greet: {
                    hello:&#39;hello,&#39;,
                    world: &#39;world&#39;,
                },
                message: &#39;message1&#39;,
            }
        })
    </script>

2. camelCase vs. kebab-case: Use camelCase naming in js and replace it with dash-delimited naming in html

<!-- 在 HTML 中使用 kebab-case -->
<child my-message="hello!"></child>

<script>
    Vue.component(&#39;child&#39;, {
        // 在 JavaScript 中使用 camelCase
        props: [&#39;myMessage&#39;],
        template: &#39;<span>{{ myMessage }}</span>&#39;
    })
</script>

3. One-way data flow: Props are one-way binding

When the properties of the parent component change, they will be transmitted to the child component, but not vice versa.

Every time the parent component is updated, all props of the child component will be updated to the latest values.

Don't change props inside child components. If you do this, Vue will warn you in the console.

In two cases, it is easy for us to be tempted to modify the data in prop:

  1. After Prop is passed in as the initial value, the subcomponent wants to Used as local data;

  2. #Prop is passed in as raw data and processed by the sub-component into other data output.

The correct response to these two situations is:
Define a local variable and initialize it with the value of prop:

    props: [&#39;initialCounter&#39;],
    data: function () {
      return { counter: this.initialCounter }
    }

Define a calculated property , process the value of prop and return:

    props: [&#39;size&#39;],
    computed: {
      normalizedSize: function () {
        return this.size.trim().toLowerCase()
      }
    }

Note that in JavaScript, objects and arrays are reference types, pointing to the same memory space. If prop is an object or array, changing it inside the child component will affect the parent component. status.

For example:

    <p id="app3">
        <my-component :object=&#39;object&#39;></my-component>
    </p>
    <script src="http://vuejs.org/js/vue.min.js"></script>
    <script>
        //
        var mycom = Vue.component(&#39;my-component&#39;, {
            //添加一个input改变子组件的childOject,那么父元素的object也会被改变,但是Vue没有报错!
            template: &#39;<p>{{ object.name }} is {{ object.age }} years old.<br><input v-model="childObject.name" type="text"></p>&#39;,
            props: [&#39;object&#39;,&#39;school&#39;],
            data: function () {
                // 子组件的childObject 和 父组件的object 指向同一个对象
                return {
                    childObject: this.object
                }
            }
        });
        var app3 = new Vue({
            el: &#39;#app3&#39;,
            data: {
                object:{
                    name: &#39;Xueying&#39;,
                    age: &#39;21&#39;,
                },
                school:&#39;SCUT&#39;,
            },
        })
    </script>

Picture: changing childObject.name, object.name also changes

Figure: Console output app3.object.name

4. Props verification

You can specify validation rules for props. If the incoming data does not meet the requirements, Vue will issue a warning.

See the official documentation for specific verification rules: Prop verification rules

5. $parent

$parent can also be used to access the data of the parent component.

And the child component can directly modify the data of the parent component through $parent without reporting an error!

When you can use props, try to use props to pass data explicitly (you can clearly and quickly see which data of the parent component is referenced by the child component).

On the other hand, it is a bad idea to modify the data of the parent component directly in the child component. The one-way data flow of props does not have this concern.

Related recommendations:

vue slot How to display the parent component in the child component and pass

vue's props to implement the child component Change with parent component

The above is the detailed content of How does a subcomponent in Vue get the value of its parent component? (props implementation). 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
vue3中怎么使用props和emits并指定其类型与默认值vue3中怎么使用props和emits并指定其类型与默认值May 19, 2023 pm 05:21 PM

defineProps的使用defineProps在使用的时候无需引入,默认是全局方法。在js开发的vue3项目中使用constprops=defineProps({attr1:{type:String,//S必须大写default:"",},attr2:Boolean,attr3:{type:Number,required:true,},});js环境中使用与vue2的使用方法类似,只是选项式API换成了组合式API。定义props类型与默认值都与vue2类型,vue3中使

Vue3中props和emit怎么使用Vue3中props和emit怎么使用May 26, 2023 pm 06:13 PM

作用:父组件通过props向下传递数据给子组件;用途:当有一种类型的组件需要被使用多次,每一次的调用都只是特定的地方不同,就好像一张个人简介表,每次填的人的信息都不同,但是结构都是一样的。用法1(不指定类型的简单接受):在父组件里面引入子组件,通过子组件的标签属性传递参数,在子组件里面定义一个props选项进行接收使用,要注意在子组件里面不需要在props以外的地方事先定义在上面可以看见传进来的age是一个字符串类型,如果想要让传进来的值自动加1不能在子组件使用时里面+1,如下图所示会变成字符串

如何解决Vue报错:无法使用props传递数据如何解决Vue报错:无法使用props传递数据Aug 17, 2023 am 10:06 AM

如何解决Vue报错:无法使用props传递数据前言:在Vue的开发过程中,使用props来进行父子组件之间的数据传递是非常常见的。然而,有时候我们可能会遇到一个问题,即在使用props传递数据时,会出现报错的情况。本文将重点介绍如何解决Vue中无法使用props传递数据的报错。问题描述:在Vue开发中,当我们在父组件中使用props来传递数据给子组件时,如果

Vue3中SetUp函数的props和context参数怎么用Vue3中SetUp函数的props和context参数怎么用May 22, 2023 pm 09:49 PM

1.setUp函数的第1个参数propssetup(props,context){}第一个参数props:props是一个对象,包含父组件传递给子组件的所有数据。在子组件中使用props进行接收。包含配置声明并传入的所有的属性的对象也就是说:如果你想通过props的方式输出父组件传递给子组件的值。你需要使用props进行接收配置。即props:{......}如果你未通过Props进行接受配置,则输出的值是undefined父组件importNoContfrom"../componen

Vue组件通信:使用props进行父子组件通信Vue组件通信:使用props进行父子组件通信Jul 07, 2023 pm 10:06 PM

Vue组件通信:使用props进行父子组件通信在Vue开发中,组件通信是一个非常重要的概念。当我们需要将数据从一个组件传递到另一个组件时,可以使用Vue的props属性进行父子组件通信。本文将介绍如何使用props属性进行组件间的通信,并提供一些代码示例。一、什么是props属性?props是Vue中的一个重要属性,它用于接收父组件传递给子组件的数据。父组件

VUE3快速入门:使用Props传递数据给子组件VUE3快速入门:使用Props传递数据给子组件Jun 15, 2023 pm 09:30 PM

VUE3是目前最新的Vue.js版本,它在性能、体验和灵活性方面都得到了大幅度的增强。在这篇文章中,我们将学习如何使用VUE3的Props来传递数据给子组件。Vue.js是一个MVVM(Model-View-ViewModel)框架,是基于组件的,每个组件都有一个局部状态和可能的动作,因此组件间的通讯是至关重要的。在Vue.js中,父级组件可以通过Props

VUE3基础教程:使用Vue.js响应式框架之props和computedVUE3基础教程:使用Vue.js响应式框架之props和computedJun 15, 2023 pm 08:44 PM

Vue.js是一款流行的JavaScript框架,用于通过响应式系统构建Web应用程序。Vue.js提供了一组易于使用的指令和组件来简化开发过程。在本篇文章中,我们将学习一个重要的概念——props和computed。Props是Vue.js组件中传递信息的方式。它允许我们将数据从父组件传递到子组件。在子组件中,我们可以使用传递过来的数据,以便进行绑定和处理

react中state和props的区别有哪些?react中state和props的区别有哪些?Nov 17, 2020 pm 04:49 PM

区别:props是传递给组件的(类似于函数的形参),而state是在组件内部被组件自己管理的(类似于在一个函数内声明的变量)。state是组件自己管理数据,控制自己的状态,可变;props是外部传入的数据参数,不可变。

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

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),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use