You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use both multiple and slim on your <portal-target>, only the first <portal> to send content to the <portal-target> gets to have its content rendered. Here's a reproduction link: https://codesandbox.io/embed/portal-vue-multiple-slim-rdhet
The text was updated successfully, but these errors were encountered:
mutliple = you have multiple root notes (at least one from each source)
slim = use source content as portal-target's root node (Vue components need one root node) instead of a wrapper div.
So when you define slim, only the first of all the elements coming in will be displayed.
Also happens when you send slot content from a single source, but with multiple elements.
If you use both
multiple
andslim
on your<portal-target>
, only the first<portal>
to send content to the<portal-target>
gets to have its content rendered. Here's a reproduction link:https://codesandbox.io/embed/portal-vue-multiple-slim-rdhet
The text was updated successfully, but these errors were encountered: