Can't the values of Vue mavon-editor bindings be rendered in the editor?

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.

Feb.28,2021
The same is true of

, but there is no tag


this.$refs.md.d_value = "md document data"


is it solved? How to solve it


 <mavon-editor
      :defaultOpen="defaultOpen"
      :toolbarsFlag="false"
      :subfield="subfield"
      :preview="preview"
      v-model="value"/>

is there any solution

Menu