[Vuejs]-Vue.js Two Components share same data from service call

0👍

If these components is not related to each other (like parent-child) then you should use a global state using a Vuex to store your records and access them from different components.

Leave a comment