mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-26 08:13:34 +08:00
24 lines
464 B
HTML
24 lines
464 B
HTML
<ion-menu [content]="content" id="leftMenu" side="left">
|
|
|
|
<ion-toolbar primary>
|
|
<ion-title>Menu</ion-title>
|
|
</ion-toolbar>
|
|
|
|
<ion-content>
|
|
|
|
<ion-list>
|
|
|
|
<button ion-item *ngFor="#p of pages" (click)="openPage(p)">
|
|
{{p.title}}
|
|
</button>
|
|
|
|
<button ion-item menuClose="leftMenu" detail-none>
|
|
Close Menu
|
|
</button>
|
|
|
|
</ion-list>
|
|
</ion-content>
|
|
|
|
</ion-menu>
|
|
|
|
<ion-nav id="nav" [root]="rootPage" #content></ion-nav> |