Check out this snippet of code:
<div #editor class="editor"
style=" max-height: 200px;"
(input)="onChange()"
[(ngModel)]="blogData.description"
name="description"
contenteditable></div>
The puzzle I'm facing:
Error: No value accessor for form control with name: 'description'
Is there a way to concurrently use [(ngModel)] and the innerHTML property on a div's contenteditable attribute?