18 lines
430 B
Svelte
18 lines
430 B
Svelte
|
<!--
|
||
|
Copyright: Ankitects Pty Ltd and contributors
|
||
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
-->
|
||
|
<script lang="ts">
|
||
|
import { onMount, createEventDispatcher } from "svelte";
|
||
|
|
||
|
const dispatch = createEventDispatcher();
|
||
|
|
||
|
let spanRef: HTMLSpanElement;
|
||
|
|
||
|
onMount(() => {
|
||
|
dispatch("mount", { span: spanRef });
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<span bind:this={spanRef}><slot /></span>
|