我已经在Angular 2应用程序中添加了Froala编辑器,并且可以正常工作,我只是找不到如何自定义工具栏,显示想要的按钮(粗体,斜体,下划线等),任何帮助?
https://github.com/froala/angular2-froala-wysiwyg
最佳答案
您可以添加如下选项:
<div
*ngIf="homeIsInEditMode"
[froalaEditor]="options"
[(ngModel)]="homeMessage.libelleMessage">
</div>
并在组件中添加所需的选项:
public options: Object = {
placeholderText: 'Edit Your Content Here!',
charCounterCount: false,
toolbarButtons: ['bold', 'italic', 'underline', 'paragraphFormat','alert'],
toolbarButtonsXS: ['bold', 'italic', 'underline', 'paragraphFormat','alert'],
toolbarButtonsSM: ['bold', 'italic', 'underline', 'paragraphFormat','alert'],
toolbarButtonsMD: ['bold', 'italic', 'underline', 'paragraphFormat','alert'],
}
您可以在official文档中获得更多详细信息。
关于angular - 如何在angular 2中自定义Froala?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44524408/