x-braft-editor

基于 braft-editor 封装富文本编辑器

Usage no npm install needed!

<script type="module">
  import xBraftEditor from 'https://cdn.skypack.dev/x-braft-editor';
</script>

README

编辑表格组件

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

参数

XBraftEditor

基础参数

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