Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 633 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 633 Bytes

Antd Design 风格的 Json Schema 可视化编辑器。

示例

npm i jschema-editor
import Editor from 'jschema-editor';
import { useState } from 'react';

export default () => {
  const [jsonData, setJsonData] = useState({});

  return (
    <Editor
      mock={true}
      data={jsonData}
      onChange={data => {
        setJsonData(data);
      }}
    />
  );
};

示例

TODO

  • IconFont 优化
  • 移除 mobx
  • 文档补全、及其界面优化
  • 全面支持 ts