**JEditor 富文本编辑器组件文档** [TOC] 富文本编辑器 ## 组件参数 | 参数 | 类型 | 必填 | 默认值 | 说明 | | --- | --- | --- | --- | --- | | value(v-model) | string | | '' | | | disabled | bool | | false | 是否禁用 | >[info] 更多参数及配置请参考`TinyMCE`官方文档:[https://www.tiny.cloud/docs/](https://www.tiny.cloud/docs/) > 中文文档:[http://tinymce.ax-z.cn/](http://tinymce.ax-z.cn/) > ## 效果展示 ![](https://img.kancloud.cn/19/19/1919b73ba000c148a6af50001a7039ad_833x411.png) ## 使用示例 ``` js const schemas: FormSchema[] = [ { field: 'tinymce', component: 'JEditor', label: '富文本', defaultValue: 'defaultValue', }, ] ```