[Vuejs]-Passing data to components which are deactivated mode in vuejs

0👍

You can pass data as props when using dynamic components

Parent:

...
<component :is="selectedComponent" yourprop="{ key: value }"></component>
...

Child:

...
export default {
  ...
  props: ['yourprop']
  ... 
}
...

For further information, you should read here

Leave a comment