Is there a possibility to access the Vue slot in a deeper nested child component like this?
<Parent>
<Child1>
<Child2>
Content
</Child2>
</Child1>
</Parent>
I want to pass HTML to a deeper child component from the parent component.
using scoped slots we can iterate over the slots and pass them down
notice the
child-slot
name;