【发布时间】:2018-12-10 10:03:43
【问题描述】:
PrimeNG 的富文本编辑器使用 quill 并且通过 JavaScript 设置它具有使用此代码禁用选项卡的功能:
keyboard: {
bindings: {
tab: false,
handleEnter: {
key: 13,
handler: function() {
// Do nothing
}
}
}
}
我可以通过以下方式访问 Angular 中的编辑器:
private quill:any;
@ViewChild(Editor) editorComponent: Editor;
ngAfterViewInit() {
this.quill = this.editorComponent.quill;
}
但是如何使用 this.quill 对象将 tab 设置为 false?有什么想法吗?
【问题讨论】: