您可以像这样添加选项:
<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 文档中获得更多详细信息。