Здравствуйте, попробуйте bt используя [innerHtml]
Отредактировано
HTML
<div #divref [innerHTML]="html4"></div>
компонент
html4 = 'click <a><b>here</b></a>';
@ViewChild("divref", {read: ElementRef}) divref: ElementRef;
ngAfterViewInit() {
// child is set
this.divref.nativeElement.addEventListener('click', ()=>{
this.reset();
})
}
демо