[Vuejs]-How to refresh a method of Child Component when I press Button on Parent Component in Vue JS?

0👍

You can use the global event bus mechanism for parent-children communication. Here’s an article which goes in depth on how you should implement this.

https://alligator.io/vuejs/global-event-bus/

Leave a comment