Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 584 Bytes

editorEvents.zh-CN.md

File metadata and controls

29 lines (22 loc) · 584 Bytes

Editor Events

监听事件

import GGEditor, { Flow } from 'gg-editor';

<GGEditor
  onBeforecommandexecute={({ command }) => {
    console.log('command', command);
  }}
>
  <Flow />
</GGEditor>

事件列表

事件名称 事件说明
onBeforeCommandExecute 命令执行前
onAfterCommandExecute 命令执行后

命令对象

命令属性 属性说明 类型
name 命令名称 string
queue 是否进入命令队列,进入命令队列则可以执行撤销、重做 boolean