1.1.0 • Published 3 years ago

x-braft-editor v1.1.0

Weekly downloads
35
License
ISC
Repository
-
Last release
3 years ago

编辑表格组件

const Demo = () => {
    return (
      <div>
        <XBraftEditor
          isView={isView}
          viewHtml="我是富文本编辑器"
          onChangeValue={value => window.console.log("value",value)}
        />
      </div>
    );
}

参数

XBraftEditor

基础参数

参数说明类型默认值
isView是编辑模式还是查看模式Booleanfalse
viewHtml文本内容string-
onChangeValue获取操作后的值function(value): object[]-