|
|
@ -20,6 +20,8 @@ const emits = defineEmits(['update:value']) |
|
|
|
|
|
|
|
|
|
|
|
const turndownService = new TurndownService() |
|
|
|
const turndownService = new TurndownService() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const editorDom = ref<HTMLElement | null>(null) |
|
|
|
|
|
|
|
|
|
|
|
const vModel = useVModel(props, 'value', emits, { defaultValue: '' }) |
|
|
|
const vModel = useVModel(props, 'value', emits, { defaultValue: '' }) |
|
|
|
|
|
|
|
|
|
|
|
const tiptapExtensions = [ |
|
|
|
const tiptapExtensions = [ |
|
|
@ -62,10 +64,15 @@ if (props.syncValueChange) { |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
watch(editorDom, () => { |
|
|
|
setTimeout(() => { |
|
|
|
if (!editorDom.value) return |
|
|
|
|
|
|
|
|
|
|
|
setEditorContent(vModel.value) |
|
|
|
setEditorContent(vModel.value) |
|
|
|
}, 0) |
|
|
|
|
|
|
|
|
|
|
|
// Focus editor after editor is mounted |
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
|
|
|
editor.value?.chain().focus().run() |
|
|
|
|
|
|
|
}, 50) |
|
|
|
}) |
|
|
|
}) |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
@ -76,7 +83,7 @@ onMounted(() => { |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<CellRichTextSelectedBubbleMenuPopup v-if="editor" :editor="editor" /> |
|
|
|
<CellRichTextSelectedBubbleMenuPopup v-if="editor" :editor="editor" /> |
|
|
|
<CellRichTextLinkOptions v-if="editor" :editor="editor" /> |
|
|
|
<CellRichTextLinkOptions v-if="editor" :editor="editor" /> |
|
|
|
<EditorContent :editor="editor" class="nc-textarea-rich w-full h-full nc-text-rich-scroll nc-scrollbar-md" /> |
|
|
|
<EditorContent ref="editorDom" :editor="editor" class="nc-textarea-rich w-full h-full nc-text-rich-scroll nc-scrollbar-md" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|