相比 g6-editor,少了很多内置命令。
想了解 g6-editor 的内置命令有哪些的话,可以点击这里看: https://github.com/blueju/vue-g6-editor/blob/master/doc/v1/g6-editor.md#内置命令
中文名称 | 英文名称 | 适用图类型(仅供参考) |
---|---|---|
撤销 | undo | All |
重做 | redo | All |
添加 | add | All |
更新 | update | All |
删除 | remove | All |
复制 | copy | All |
粘贴 | paste | All |
粘贴到这里 | pasterHere | All |
放大 | zoomIn | All |
缩小 | zoomOut | All |
插入主题 | topic | 脑图 |
插入子主题 | subtopic | 脑图 |
收起 | fold | 脑图 |
展开 | unfold | 脑图 |
一般情况下,我们不直接写死如 undo 这样的字符串来使用内置命令,而是通过引用 gg-editor 暴露的全局常量来赋值,这样也方便溯源查看,如图:
可以点击以下链接跳转到 Github 查看 gg-editor 的全部内置命令,及其对应的代码:
https://github.com/alibaba/GGEditor/blob/master/src/common/constants/index.ts#L63