mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 12:44:27 +08:00
fix: init rich-text fail
This commit is contained in:
parent
2305fff569
commit
0741c564dd
@ -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('')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user