**JMarkdownEditor 组件文档** [TOC] Markdown 编辑器 ## 组件参数 | 参数 | 类型 | 必填 | 默认值 | 说明 | | --- | --- | --- | --- | --- | | value(v-model) | string | | '' | | | disabled | bool | | false | 是否禁用 | >[info] 更多参数及配置请参考`Vditor`官方文档:[https://b3log.org/vditor/](https://b3log.org/vditor/) ## 效果展示 ![](https://img.kancloud.cn/0f/96/0f9646b5cd33acd3ce08bf21b1ee125f_829x306.png) ## 使用示例 ``` js const schemas: FormSchema[] = [ { field: 'markdown', component: 'JMarkdownEditor', label: 'Markdown', defaultValue: '# 张三', componentProps: { height: 300, }, }, ] ```