[Vuejs]-How to pass values between Vue sibling components, without using 'params'?

0👍

I think you might consider the global state called eventBus, you can read about it here

It will allow you to create make there methods for your get request and watch for changes on your .vue instances with computed properties or watchers

Leave a comment