Dans angular 1 fonctionne comme ng-bind-html = "htmlValue"
Comment lier du HTML dans Angular 2.0
Je pense que vous pouvez utiliser l'attribut innerHtml
et y lier quelque chose:
<span [innerHtml]="someHtmlContent"></span>
Voici un exemple:
@Component({
selector: 'first-app',
template: `
<span [innerHtml]="value"></span>
`
})
export class AppComponent {
constructor(private http:Http) {
this.value = '<strong>test</strong>';
}
}