mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
20 lines
287 B
HTML
20 lines
287 B
HTML
|
|
<div *ion-header>
|
|
|
|
<h1 class="toolbar-title">Second Page</h1>
|
|
|
|
</div>
|
|
|
|
|
|
<ion-content class="padding" style="background:green">
|
|
|
|
<p>
|
|
<button (click)="pop()">Pop (Go back to 1st)</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button (click)="push()">Push (Go to 3rd)</button>
|
|
</p>
|
|
|
|
</ion-content>
|