Detailed explanation of parent-child communication in Vue components

小云云
Release: 2018-01-19 13:48:29
Original
1452 people have browsed it

This article mainly introduces the detailed explanation of the communication between the parent and the child of the Vue component and the implementation of the login window. It has certain reference value. Interested friends can refer to it. I hope it can help everyone.

1. Communication between components (parent component --> child component)

Steps:

①Parent component Pass the value when calling the child component


 
Copy after login

②Get the value passed by the parent component in the child component


Vue.component('child-component',{   props:['myValue'],   template:'' })
Copy after login

Code 1:


##

    父传子  

{{msg}}

Copy after login

myValue is the attribute name, which must be the same...use v-bind: or:

props is a property attribute, which is an array

Code 2:



    父子之间通信练习  

{{msg}}

Copy after login

Code 3:



      

Copy after login
To get the data in data, v-bind is required, otherwise it is not used.

Related recommendations:


Detailed explanation of dynamically loading Vue component instances in the permission management module

Detailed explanation of Alert of vue component

jquery loading single file vue component method sharing

The above is the detailed content of Detailed explanation of parent-child communication in Vue components. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!