2018-04-12 05:31:31 +00:00
|
|
|
<h1>Download</h1>
|
2018-05-18 08:30:20 +00:00
|
|
|
<p-tabView orientation="left" (onChange)="onChange($event)" [activeIndex]="index">
|
2018-04-11 08:41:38 +00:00
|
|
|
<!--
|
|
|
|
<p-tabPanel [header]="item.header" *ngFor="let item of items; let i = index" [selected]="i == 0">
|
|
|
|
{{item.content}}
|
|
|
|
</p-tabPanel>
|
|
|
|
-->
|
2018-05-18 08:30:20 +00:00
|
|
|
<p-tabPanel header="Ubuntu">
|
|
|
|
<ng-template pTemplate="content">
|
|
|
|
Complex Content to Lazy Load1
|
|
|
|
</ng-template>
|
2018-04-11 08:41:38 +00:00
|
|
|
</p-tabPanel>
|
2018-05-18 08:30:20 +00:00
|
|
|
<p-tabPanel header="Windows" >
|
|
|
|
<ng-template pTemplate="content">
|
|
|
|
Complex Content to Lazy Load2
|
|
|
|
</ng-template>
|
2018-04-11 08:41:38 +00:00
|
|
|
</p-tabPanel>
|
|
|
|
<p-tabPanel header="CentOS">
|
2018-05-18 08:30:20 +00:00
|
|
|
<ng-template pTemplate="content">
|
|
|
|
Complex Content to Lazy Load3
|
|
|
|
</ng-template>
|
2018-04-11 08:41:38 +00:00
|
|
|
</p-tabPanel>
|
|
|
|
</p-tabView>
|