Skip to content
slot without shadow dom

slot without shadow dom

1
2
3
4
5
6
7
<svelte:options customElement={{ tag: "example", shadow: "none" }} />

<div
  {@attach (slot) => {
    slot.appendChild($host().firstElementChild!);
  }}
></div>
Last updated on