you should use that:
<script src="https://cdn.ckeditor.com/4.5.11/full-all/ckeditor.js"></script>
and you should use in your CKEdior tag:
<ckeditor
[(ngModel)]="sampleContent"
[config]="{uiColor: '#a0a0a0',extraPlugins:'placeholder'}"
debounce="500">
</ckeditor>
and you can use :
(change)="onChange($event)"
but you must define in your Component:
onChange(body:any) {
//your Code
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…