-
-
Notifications
You must be signed in to change notification settings - Fork 400
Closed
Labels
Description
Hi i'm trying to use turbo-frame in live-components :
Twig :
<div class="container" >
<twig:Sortable :class="class"/>
</div>
<turbo-frame id="sortable-container">
<div {{ attributes }}>
....
</div>
</turbo-frame>
this it block all components logic, but if we use this way all is back
Twig :
<div class="container" >
<turbo-frame id="sortable-container">
<twig:Sortable :class="class"/>
</turbo-frame>
</div>
<div {{ attributes }}>
....
</div>
can it be possible to use mix live-components with turbo-frame ?
Thank