[Vuejs]-How to get data props from another component in vue js

0👍

I suggest learning a bit more about Vuex to solve this problem.

This will give you a logical place to define database related actions that can also provide reactive data to components that will display it. Even if you’re relatively new to Vue, learning Vuex sooner rather than later will payoff.

It may also be possible for you to use v-model to extricate some data from one component… but what you’ve described seems a bit different. It might be worth looking at how to implement v-model on your own components as you become more familiar with Vue!

Leave a comment