English | 简体中文
npm install gg-editor --save<scriptsrc="https://unpkg.com/gg-editor@${version}/dist/index.js"></script>importGGEditor,{Flow}from'gg-editor';constdata={nodes: [{id: '0',label: 'Node',x: 55,y: 55,},{id: '1',label: 'Node',x: 55,y: 255,},],edges: [{label: 'Label',source: '0',target: '1',},],};<GGEditor><Flowstyle={{width: 500,height: 500}}data={data}/></GGEditor>;importGGEditor,{Mind}from'gg-editor';constdata={label: 'Central Topic',children: [{label: 'Main Topic 1',},{label: 'Main Topic 2',},{label: 'Main Topic 3',},],};<GGEditor><Mindstyle={{width: 500,height: 500}}data={data}/></GGEditor>;# 克隆仓库 $ git clone https://github.com/alibaba/GGEditor.git # 切换目录 $ cd gg-editor # 安装依赖 $ npm install # 运行示例 $ npm start