projects/ngx-list-view/src/lib/components/not-found/ngx-not-found.component.ts
| selector | ngx-not-found |
| templateUrl | ngx-not-found.component.html |
Inputs |
classes
|
Type:
Default value: |
show
|
Default value: |
import {Component} from '@angular/core';
import {Input} from '@angular/core';
@Component({
selector: 'ngx-not-found',
templateUrl: 'ngx-not-found.component.html'
})
export class NgxNotFoundComponent {
@Input() classes: Object = 'alert alert-warning text-center';
@Input() show = false;
}
<div *ngIf="show" [ngClass]="classes">
<ng-content></ng-content>
</div>