mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
24 lines
420 B
HTML
24 lines
420 B
HTML
|
|
<ion-navbar *navbar>
|
|
<button [menuToggle]="activeMenu">
|
|
<ion-icon name="menu"></ion-icon>
|
|
</button>
|
|
<ion-title>
|
|
Multiple Menus
|
|
</ion-title>
|
|
</ion-navbar>
|
|
|
|
|
|
<ion-content padding>
|
|
<h3> Page 2 </h3>
|
|
|
|
<h4>Active Menu: {{ activeMenu }}</h4>
|
|
|
|
<p>
|
|
<button [menuToggle]="activeMenu">Toggle Menu</button>
|
|
</p>
|
|
|
|
<p>This page has two left menus, but only one is active at a time.</p>
|
|
|
|
</ion-content>
|