0.1.7 • Published 2 years ago

@halsn/json-schema-editor-antd v0.1.7

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Json Schema 可视化编辑器(Antd)

快速开始

# 开发
npm run dev

# 构建
npm run build

# 发布前预览
npm run prepublishOnly && arco preview

示例

npm install @halsn/json-schema-editor-antd
import { useState } from "react";
import JsonSchemaEditor from '@halsn/json-schema-editor-antd';
import '@halsn/json-schema-editor-antd/dist/css/index.css';

export default () => {

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

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

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.0.9

2 years ago

0.1.7

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago