mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
refactor(): wrap templates in <ion-page>
This commit is contained in:
@ -30,6 +30,24 @@
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
|
||||
<ion-row>
|
||||
<ion-col>
|
||||
<h2>Search Input</h2>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
<ion-row>
|
||||
<ion-col>
|
||||
<ion-item>
|
||||
<ion-label>Ionic Text Input</ion-label>
|
||||
<ion-searchbar id="ionSearchInput" name="ionSearchInput" [(ngModel)]="searchValue" minlength="10"></ion-searchbar>
|
||||
</ion-item>
|
||||
</ion-col>
|
||||
<ion-col>
|
||||
Value:
|
||||
<span id="searchOutput">{{searchValue}}</span>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
|
||||
<ion-row>
|
||||
<ion-col>
|
||||
<h2>Numeric Input</h2>
|
||||
@ -168,6 +186,25 @@
|
||||
<ion-col>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
|
||||
<ion-row>
|
||||
<ion-col>
|
||||
<h2>Segment</h2>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
<ion-row>
|
||||
<ion-col>
|
||||
<ion-segment [(ngModel)]="segmentValue" >
|
||||
<ion-segment-button value="taco"></ion-segment-button>
|
||||
<ion-segment-button value="burrito"></ion-segment-button>
|
||||
<ion-segment-button value="enchilada"></ion-segment-button>
|
||||
</ion-segment>
|
||||
</ion-col>
|
||||
<ion-col>
|
||||
Value:
|
||||
<span >{{segmentValue}}</span>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
</ion-grid>
|
||||
|
||||
<a href='home'>Home</a>
|
||||
|
Reference in New Issue
Block a user