Events
vusui-editor Events 事件
@text-change
参数:
{ delta: Delta, oldContents: Delta, source: Sources }
作用:当文本更改时触发
@selection-change
参数:
{ range: RangeStatic, oldRange: RangeStatic, source: Sources }
作用:当选择发生变化时触发
@editor-change
参数:
{ name: 'text-change', delta: Delta, oldContents: Delta, source: Sources}
或者:
{ name: 'selection-change', range: RangeStatic, oldRange: RangeStatic, source: Sources }
作用:当编辑器更改(文本更改或选择更改)时触发
@focus
- 参数:
editor: Ref<any>
作用:当编辑器获得焦点时触发。
@blur
- 参数:
editor: Ref<any>
作用:当编辑器失去焦点时触发。
@ready
- 参数:
quill: Quill
作用:Quill
初始化后触发。
@update:content
- 参数:
content: String
作用:编辑器内容更改时触发。