<template *ngIf="activeTab" [ngTemplateOutlet]="activeTab.content.templateRef"></template>
Существует, ангуляр внутри к нему и преобразовывает шаблоны
https://angular.io/docs/ts/latest/guide/structural-directives.html <!-- Examples (A) and (B) are the same --> <!-- (A) *ngIf paragraph --> <p *ngIf="condition"> Our heroes are true! </p> <!-- (B) [ngIf] with template --> <template [ngIf]="condition"> <p> Our heroes are true! </p> </template>
Обсуждают сегодня