mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
19 lines
495 B
HTML
19 lines
495 B
HTML
<ion-navbar *navbar>
|
|
<ion-title>Nav Params</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content>
|
|
<ion-list no-margin>
|
|
<ion-list-header>
|
|
Enter Parameters to Pass to the Next Page
|
|
</ion-list-header>
|
|
<ion-item>
|
|
<ion-label>Parameters</ion-label>
|
|
<ion-input placeholder="Enter Parameters" [(ngModel)]="myParam"></ion-input>
|
|
</ion-item>
|
|
</ion-list>
|
|
<div padding>
|
|
<button secondary block (click)="pushParams()">Navigate with Parameters</button>
|
|
</div>
|
|
</ion-content>
|