mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
26 lines
500 B
HTML
26 lines
500 B
HTML
<ion-menu #menu [content]="content">
|
|
|
|
<ion-toolbar secondary>
|
|
<ion-title>Left Menu</ion-title>
|
|
</ion-toolbar>
|
|
|
|
<ion-content>
|
|
|
|
<ion-list>
|
|
|
|
<button ion-item *ng-for="#p of pages" (click)="openPage(menu, p)">
|
|
{{p.title}}
|
|
</button>
|
|
|
|
<button ion-item menu-toggle no-forward-icon id="e2eCloseMenu">
|
|
Close Menu
|
|
</button>
|
|
|
|
</ion-list>
|
|
</ion-content>
|
|
|
|
</ion-menu>
|
|
|
|
|
|
<ion-nav id="nav" [root]="rootView" #content swipe-back-enabled="false"></ion-nav>
|