[Vuejs]-How to deal with in multi components to fetch data in Vue.js?

0👍

There are many ways to do that.

Props

Props lets you pass data to child component.

Provide/Inject

Providers lets you pass data nested, more than one level.

Vuex

Vuex stores lets you cache your data in $store object to use later, wherever you want.

Leave a comment