when I save the mavon-editor edited content to the database, I still want to put it in the editor to continue editing, but I found that the bound value mavon-editor is directly output to me as is, what should I do?
<mavon-editor v-model="comments" @change="commentsChange" :toolbars="mavonEditorToolbars"></mavon-editor>
data() {
return {
comments: "default information.
", //
mavonEditorToolbars: {
// toolbar config
}
}
},
methods: {
commentsChange() {
// code...
}
}
ask for help.