ng-alert
Version:
Simple Alert module for Angular version 2 and above.
7 lines (5 loc) • 308 B
HTML
<div [class]="'alert alert-${alert.type} fade in'" *ngFor="let alert of alerts">
<a href="#" class="close" data-dismiss="alert" aria-label="close" (click)="remove(alert)" *ngIf="alert.hasCloseButton">×</a>
<strong *ngIf="alert.title">{{alert.title}}</strong>
<span> {{alert.message}} </span>
</div>