pablocattaneo
6/15/2017 - 11:35 AM

Show elements using conditionals.

Show elements using conditionals.

<strong *ngIf="If this expression is true show this element otherwise don't" >Content</strong>

<strong *ngIf="serverElement.type === 'server'">Content</strong>
<em *ngIf="serverElement.type === 'blueprint'">Content</em>