mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-23 02:40:14 +01:00
feat: docs app
This commit is contained in:
parent
713aff561e
commit
2129689f98
203 changed files with 15927 additions and 5 deletions
|
|
@ -0,0 +1,21 @@
|
|||
<ng-container [ngSwitch]="currentTab?.tab">
|
||||
<ng-container *ngFor="let component of source">
|
||||
|
||||
<ng-container *ngSwitchCase="'overview'">
|
||||
<ngx-overview-block *ngIf="hasOverview(component)" [source]="component"></ngx-overview-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'theme'">
|
||||
<ngx-styles-block *ngIf="hasTheme(component)" [source]="component"></ngx-styles-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'api'">
|
||||
<ngx-api-block *ngIf="hasAPI(component)" [source]="component" ></ngx-api-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'examples'">
|
||||
<ngx-examples-block *ngIf="hasExamples(component)" [source]="component" ></ngx-examples-block>
|
||||
</ng-container>
|
||||
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue