How to implement parent component click to trigger child component event in vue

亚连
Release: 2018-06-07 11:27:21
Original
5674 people have browsed it

Below I will share with you an example of how a vue parent component clicks to trigger a child component event. It has a good reference value and I hope it will be helpful to everyone.

Recently I am studying the communication problem of Vue parent and child components. I happened to encounter an event dispatch and reception between father and child. I will record it here. Here I use ref

for the child component. Register citation information.Official websiteexplains it this way

ref is used to register reference information for elements or subcomponents. Reference information will be registered on the $refs object of the parent component. If used on a normal DOM element, the reference points to the DOM element; if used on a child component, the reference points to the component instance:

Parent component app.vue

  
Copy after login

Subcomponent popup.vue

  
Copy after login

I divided this example into several steps to interpret:

1. Bind the click event to the button element of the parent component, The event points to the notify method

2. Register a ref="child" for the child component

3. When the notify method of the parent component is processed, $refs.child is used to pass the event The parentMsg method for the child component also carries the parameter msg in the parent component

4. After the child component receives the event from the parent component, it calls the parentMsg method and puts the received msg into the message array

The running results are as follows:

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Implementing user permission control in Vue2.0

Detailed explanation of how to implement vuex (detailed tutorial)

Implement WeChat payment through vue.js

The above is the detailed content of How to implement parent component click to trigger child component event in vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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