fix: init rich-text fail

This commit is contained in:
chansee97 2024-06-30 14:40:55 +08:00
parent 2305fff569
commit 0741c564dd

View File

@ -10,7 +10,7 @@ const props = defineProps<{
disabled?: boolean disabled?: boolean
}>() }>()
const model = defineModel() const model = defineModel<string>()
let editorInst = null let editorInst = null
@ -62,18 +62,23 @@ function initEditor() {
quill.enable(false) quill.enable(false)
editorInst = quill editorInst = quill
if (model.value)
setContents(model.value)
}
function setContents(html: string) {
editorInst!.setContents(editorInst!.clipboard.convert({ html }))
} }
watch( watch(
() => model.value, () => model.value,
(newValue, _oldValue) => { (newValue, _oldValue) => {
if (newValue && newValue !== editorModel.value) { if (newValue && newValue !== editorModel.value) {
editorInst!.setContents(editorInst!.clipboard.convert({ setContents(newValue)
html: newValue,
}))
} }
else if (!newValue) { else if (!newValue) {
editorInst!.setContents([]) setContents('')
} }
}, },
) )