1.3.8 • Published 3 years ago

@yangsansuan/json-editor v1.3.8

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

扩展自JSON编辑,支持了表格视图模式

usage

// step1 导入
import JSONEditor from "@yangsansuan/json-editor";

function App() {
  const ref = useRef()

  useEffect(() => {
    const json = {
        "Array": [1, 2 ,3],
        "Boolean": true,
        "Null": null,
        "Number": 123,
        "Object": {
            "a": "b",
            "c": "d"
        },
        "String": "Hello World"
    }
    const options = {};
    // step2 创建编辑器
    const editor = JSONEditor(ref.current, options);
    // ste3 填入json数据
    editor.set(json);
  }, [])

  return (
    <div className="App" ref={ref}></div>
  );
}
1.3.8

3 years ago

1.3.7

3 years ago

1.3.6

3 years ago

1.3.5

3 years ago

1.3.4

3 years ago

1.3.3

3 years ago

1.3.1-t

3 years ago

1.3.1-t3

3 years ago

1.3.1-t2

3 years ago

1.3.1

3 years ago

1.2.7

3 years ago

1.2.6

3 years ago

1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago