22 lines
569 B
Svelte
22 lines
569 B
Svelte
|
|
<script>
|
||
|
|
import {onMount} from "svelte";
|
||
|
|
import Trix from "trix"
|
||
|
|
import customcss from "./tinymce.css?inline";
|
||
|
|
import "trix/dist/trix.css"
|
||
|
|
|
||
|
|
export let value = "";
|
||
|
|
let textareaEl;
|
||
|
|
let lastVal;
|
||
|
|
let editorWrapper;
|
||
|
|
let activeEditor;
|
||
|
|
|
||
|
|
Trix.config.blockAttributes.default.breakOnReturn = false
|
||
|
|
console.log(Trix.config)
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div bind:this={editorWrapper} class="tox-wrapper">
|
||
|
|
<input bind:this={textareaEl} id="x" bind:value type="hidden">
|
||
|
|
<trix-editor class="trix-content content" input="x"></trix-editor>
|
||
|
|
</div>
|