我正在尝试使用 Livewire 在我的 Laravel 应用程序中嵌入 Jodit WYSIWYG HTML 编辑器,但无法使其正常工作。(https://xdsoft.net/jodit/)
我的代码如下..任何帮助将不胜感激!
<div wire:ignore
x-data="{ }"
x-init="
editor = new Jodit('#editor');
editor.value = @entangle($attributes->wire('model'));
"
class="w-full h-full">
<textarea id="editor" name="editor" ></textarea>
</div>