mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
28 lines
522 B
HTML
28 lines
522 B
HTML
|
|
<ion-aside #aside [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(aside, p)">
|
|
{{p.title}}
|
|
</button>
|
|
|
|
<button ion-item aside-toggle id="e2eCloseMenu">
|
|
Close Menu
|
|
</button>
|
|
|
|
</ion-list>
|
|
|
|
</ion-content>
|
|
|
|
</ion-aside>
|
|
|
|
|
|
<ion-nav [root]="rootView" #content [register]="content" register-id="nav" swipe-back-enabled="false"></ion-nav>
|