You can use ElementRef . For instance.
import { Component, ElementRef } from '@angular/core'; @Component({ selector: 'test-text', template: `<p> Text </p>` }) export class TestComponent { elRef: ElementRef constructor(elRef: ElementRef) { this.elRef = elRef; } getHtmlContent() {
source share