how to convert vue,mavon-editor, to markdown,
when saving it in the database is html, and then take it out.
<mavon-editor v-model="content" @change="changeData" />
changeData(value, render) {
console.log(value);
console.log(render);
this.contentHtml = render;
}