anki/ts/editor-toolbar/RawButton.svelte

11 lines
245 B
Svelte
Raw Normal View History

<script lang="typescript">
import { onMount, createEventDispatcher } from "svelte";
export let html: string;
const dispatch = createEventDispatcher();
onMount(() => dispatch("mount", { button: null }));
</script>
{@html html}