mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
42 lines
753 B
HTML
42 lines
753 B
HTML
<ion-menu [content]="content" id="leftMenu" type="reveal" side="left">
|
|
|
|
<ion-toolbar secondary>
|
|
<ion-title>Left Menu</ion-title>
|
|
</ion-toolbar>
|
|
|
|
<ion-content>
|
|
|
|
<ion-list>
|
|
|
|
<button ion-item menu-toggle="leftMenu" detail-none>
|
|
Close Left Menu
|
|
</button>
|
|
|
|
</ion-list>
|
|
</ion-content>
|
|
|
|
</ion-menu>
|
|
|
|
|
|
<!-- <ion-menu [content]="content" id="rightMenu" type="reveal" side="right">
|
|
|
|
<ion-toolbar secondary>
|
|
<ion-title>Right Menu</ion-title>
|
|
</ion-toolbar>
|
|
|
|
<ion-content>
|
|
|
|
<ion-list>
|
|
|
|
<button ion-item menu-toggle="rightMenu">
|
|
Close Right Menu
|
|
</button>
|
|
|
|
</ion-list>
|
|
</ion-content>
|
|
|
|
</ion-menu> -->
|
|
|
|
|
|
<ion-nav id="nav" [root]="rootView" #content swipe-back-enabled="false"></ion-nav>
|