[Vuejs]-How can I use component specific attributes on dynamic components in Vue.js?

0👍

There is a provide / inject feature in Vue.js which allows for specific data and functions communication between parents and children in Vue.js. I found it to work nice for me here, and it is also good for passing some data/functions to or from a deeply nested child, so you don’t have to pass it through all of its ancestors.

Leave a comment