8 lines
116 B
Svelte
8 lines
116 B
Svelte
<script>
|
|
let ref;
|
|
$: ref && document.body.appendChild(ref);
|
|
</script>
|
|
|
|
<div bind:this={ref}>
|
|
<slot></slot>
|
|
</div> |