Injecting html into Nested Components (ala Blade/Vue slots)

What seems to be the problem:

I would like to know if its possible to use Livewire Components IN a Livewire Component in a similar way to Blade templates (or even Vue templates) by passing html into it via slots.
Take for example a Livewire component for modals
Each modal I make will call that base Livewire modal component, then we would inject all of our form html (bound to our PHP model), then my Livewire (child) component can $emitUp to do things like close the modal.

I am working on porting Vue components to Livewire and its going well thanks to @xxdalexx

Found the answer

it’s currently a no

Well, using that syntax is a no, but you could still accomplish the same functionality with the syntax that’s already provided.