In a Vue 2.0 app, let\'s say we have components A, B and C.
A declares, registers and uses B
Is it possible to pass C from A to B?
Something like this:<
You can use special attribute is for doing this kind of thing. Example of dynamic component and it's usage can be found here.
You can use the same mount point and dynamically switch between multiple components using the reserved element and dynamically bind to its is attribute:
Your code will look like following:
Something else