JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END > Vue >

Vue child component calls the parent component's method and passes parameters

Author:JIYIK Last Updated:2025/02/28 Views:

Vue is a popular front-end framework that provides many convenient functions and APIs, including componentization. In Vue, we can split a page into multiple small components, each with its own state and methods, which makes the code clearer and easier to maintain.

In Vue, the parent component can pass data to the child component through the props attribute, but how does the child component call the parent component's method and pass parameters? This requires the use of the event mechanism provided in Vue.

First, define a method in the parent component, for example:

<template>
  <div>
    <child-component @child-click="handleChildClick"></child-component>
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue'

export default {
  components: {
    ChildComponent
  },
  methods: {
    handleChildClick(data) {
      console.log('child click:', data)
    }
  }
}
</script>

In the above code, we define a handleChildClickmethod in the parent component, @child-clicklisten to the click event of the child component through the event, and set the event callback function to handleChildClickthe method.

Next, trigger the parent component's method in the child component, for example:

<template>
  <div>
    <button @click="handleClick">Click me</button>
  </div>
</template>

<script>
export default {
  methods: {
    handleClick() {
      this.$emit('child-click', 'hello')
    }
  }
}
</script>

In the above code, we define a handleClickmethod in the child component and this.$emit(‘child-click’, ‘hello’)trigger an child-clickevent called through and set the parameter to 'hello'.

Finally, we can get the parameters passed by the child component in the handleChildClick method of the parent component, for example:

handleChildClick(data) {
  console.log('child click:', data) // Output:child click: hello
}

In the above code, we handleChildClickoutput the parameter passed by the child component, namely 'hello', in the method of the parent component.

In summary, the method for a child component to call a parent component method and pass parameters is to trigger a custom event in the child component, set the event callback function to the method in the parent component, and then listen to the event through the $emit method in the parent component and obtain the parameters passed by the child component. This can achieve communication between the child component and the parent component.

For example, suppose we have a parent component and a child component. There is a method called handleChildClick in the parent component and a button in the child component. Clicking the button needs to trigger the handleChildClick method of the parent component and pass a parameter. The code is as follows:

Parent component code:

<template>
  <div>
    <child-component @child-click="handleChildClick"></child-component>
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue'

export default {
  components: {
    ChildComponent
  },
  methods: {
    handleChildClick(data) {
      console.log('child click:', data)
      // Here you can do some processing, such as updating the status of the parent component
      this.parentData = data
    }
  },
  data() {
    return {
      parentData: ''
    }
  }
}
</script>

Subcomponent code:

<template>
  <div>
    <button @click="handleClick">Click me</button>
  </div>
</template>

<script>
export default {
  methods: {
    handleClick() {
      this.$emit('child-click', 'hello')
    }
  }
}
</script>

In the above code, we define a button in the child component and trigger an child-clickevent called in the button's click event, and set the parameter to 'hello'.

In the parent component, we define a handleChildClickmethod named , and @child-clicklisten to the click event of the child component through the event, and set the event callback function to handleChildClickthe method. In handleChildClickthe method, we can get the parameters passed by the child component and do some processing, such as updating the status of the parent component.

Finally, we can get the parameters passed by the child component in the parent component and save them in parentData.


Summarize

In Vue, a child component can call a parent component method and pass parameters by triggering a custom event in the child component, setting the event callback function to the method in the parent component, and then $emitlistening to the event through the method in the parent component and obtaining the parameters passed by the child component. This allows communication between the child component and the parent component.

Through the above examples, we can see how to implement Vue in which child components call parent component methods and pass parameters. This method can well solve the communication problem between components, making the code clearer and easier to maintain.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Webpack packages ES6 and CommonJs mixed React

Publish Date:2025/03/02 Views:179 Category:React

This article mainly introduces how to use webpack to package and compile React mixed with ES6 and CommonJs. It is a process of upgrading the React environment.

How to scroll to the top or bottom of the page in Vue.js

Publish Date:2025/03/01 Views:96 Category:Vue

Vue.js is a popular front-end framework that helps developers build efficient and maintainable applications. In Vue.js, scrolling the page to the top or bottom is a common requirement. In this article, we will introduce how to implement this

Display element or text on mouse hover in vue

Publish Date:2025/03/01 Views:179 Category:Vue

Vue.js is a popular JavaScript framework that makes web application development easier and more efficient. In this tutorial, we will learn how to use Vue.js to display an element or text on mouse hover. This tutorial will cover the following

What is the use of the immediate property of watch in Vue?

Publish Date:2025/03/01 Views:67 Category:Vue

In Vue, watch is a way to perform asynchronous tasks or trigger responsive dependencies when data changes. In most cases, watch will be delayed by default. This means that the watch will only be triggered when the value being monitored chang

Setting up checkbox functionality in Vue

Publish Date:2025/03/01 Views:186 Category:Vue

In Vue, checkboxes are a very common interactive component that allows users to select multiple options. This article will introduce how to set up checkbox functionality in Vue and provide some practical examples.

What happens if a child component changes the data in props in Vue?

Publish Date:2025/03/01 Views:140 Category:Vue

In Vue, when a child component changes the data in props, it will cause the responsiveness of the parent component and other child components to change. First, you need to understand that props is a way to pass data from a parent component t

How to refresh the page in Vue

Publish Date:2025/03/01 Views:91 Category:Vue

Vue is a popular JavaScript framework that provides many convenient tools and methods for building web applications. In Vue, page updates are usually achieved through data binding and responsive systems. But sometimes you need to refresh the

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial