Add missing editor content

This commit is contained in:
Jon Staab
2025-02-05 08:54:04 -08:00
parent 3e214881a3
commit 3f2813b63b

View File

@@ -0,0 +1,22 @@
<script lang="ts">
import {onDestroy, onMount} from "svelte"
const {editor} = $props()
let element: HTMLElement
onMount(() => {
if (element) {
element.append(...(Array.from(editor.options.element.childNodes) as any))
editor.setOptions({element})
editor.contentElement = element
}
})
onDestroy(() => {
editor.contentElement = null
editor.setOptions({element: null})
})
</script>
<div bind:this={element}></div>