чтобы так работало ? htmlText = ''; componentClass = {}; this.htmlText = '<div>hello {{name}}</div> <button (click)="onEvent()">Test Event</button>'; this.componentClass = { name: 'World!', onEvent: function() { alert('this is event'); } } <app-html-compiler [template]="htmlText" [componentClass]="componentClass" [imports]="imports"> </app-html-compiler>
Обсуждают сегодня