Skip to content
Advertisement

Vue js pass a function from child chile to another child component on a click event

I am trying to pass a function when a button is clicked, the button is clicked in a child element, then passed through a parent element to another child component, and i dont want to use the store for that, How can i do that?

components/footer/footer.vue — This is where the button is clicked

JavaScript

layouts/default.vue –This is the parent component where that receives the click function and is to pass it into the app-header

JavaScript

components/header/header.vue — I want the click function to perform an action inside this component

JavaScript

Advertisement

Answer

You can declare any attribut on your parent component:

JavaScript
  • Then pass it like a props from the parent to the header child:
    <app-header :Trigger="toBeWatched" />
  • When you listen to the @show-menu event (comming from footer child), make any change on your attribut:
    <app-footer @show-menu="toBeWatched++" />
  • Finally you can watch for this change on your header child and trigger your function.
JavaScript
Advertisement