Vue parent component calls child component function implementation

Vue parent component calls child component function implementation

Vue parent component calls the function of the child component

The parent component calls the child component's function through the event. For example, the parent component allows the child component to send a request through a click event.

The project in the article has been created through scaffolding.

DEMO:

Father.js
<template>
    <div>
        <div>
            <son ref="son"></son>
            <input type="button" value="click" @click="useSonFun">
        </div>  
    </div>
</template>

<script>
import son from './son'
export default {
    components:{
        son
    },
    data(){
        return {
            
        }
    },
    methods: {
        useSonFun(){
            this.$refs.son.say(); //Give the child component a ref and call the function in the child component through ref}
    },
}
</script>
Son.js
<template>
    <div>
        <h1>SON</h1>
    </div>
</template>

<script>
export default {
    data(){
        return {
            
        }
    },
    methods:{
        say(){//Subcomponent function that needs to be called by the parent component console.log("SON COMPONENT");
        }
    },
}
</script>

Rendering

insert image description here

The parent component calls the child component function. You can use it to send a request by clicking on the parent component. Based on the click event, the child component also sends a request. It can be distinguished from the parent component clicking to send a request, obtaining data, and then passing the data to the child component through the component value passing method.

Tips:

Father.js:
this.$refs.son.say (the parent component data can be passed to the child component in brackets);
Son.js:
say(receive data from parent component to child component){
	//Use of data}

This is the end of this article about the introduction and use of the observer pattern in Java design pattern. For more relevant observer pattern content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the case of Vue child component calling parent component method
  • Detailed example of how to change the value of a child component by triggering an event in the Vue parent component
  • Detailed explanation of the event of triggering child components by clicking buttons in parent components in Vue
  • How to call child component functions in vue parent component
  • Vue3.0 triggers the parent component function in the child component

<<:  Detailed explanation of the failure of MySQL to use UNION to connect two queries

>>:  Tutorial on installing MySQL 8.0.11 using RPM on Linux (CentOS7)

Recommend

Detailed explanation of several ways to export data in Mysql

There are many purposes for exporting MySQL data,...

Commonly used English fonts for web page creation

Arial Arial is a sans-serif TrueType font distribu...

mysql 8.0.16 winx64.zip installation and configuration method graphic tutorial

This article shares the specific code of MySQL 8....

Vue implements video upload function

This article example shares the specific code of ...

The normal method of MySQL deadlock check processing

Normally, when a deadlock occurs, the connection ...

MySQL whole table encryption solution keyring_file detailed explanation

illustrate MySql Community Edition supports table...

Vue: Detailed explanation of memory leaks

What is a memory leak? A memory leak means that a...

MySql learning day03: connection and query details between data tables

Primary Key: Keyword: primary key Features: canno...

Five solutions to cross-browser problems (summary)

Brief review: Browser compatibility issues are of...

JS implements the rock-paper-scissors game

This article example shares the specific code of ...

MySQL: mysql functions

1. Built-in functions 1. Mathematical functions r...

Implementation of webpack-dev-server to build a local server

Table of contents Preface webpack-deb-server webp...