mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
docs(): fix spelling
This commit is contained in:
@ -47,8 +47,8 @@ import {Option} from '../option/option';
|
||||
* selected option values.
|
||||
*
|
||||
* ```html
|
||||
* <ion-select [(ngModel)]="topings" multiple="true">
|
||||
* <ion-label>Topings</ion-label>
|
||||
* <ion-select [(ngModel)]="toppings" multiple="true">
|
||||
* <ion-label>Toppings</ion-label>
|
||||
* <ion-option value="bacon">Bacon</ion-option>
|
||||
* <ion-option value="olives">Black Olives</ion-option>
|
||||
* <ion-option value="xcheese">Extra Cheese</ion-option>
|
||||
@ -83,8 +83,8 @@ import {Option} from '../option/option';
|
||||
*
|
||||
* ```ts
|
||||
* this.alertOptions = {
|
||||
* title: 'Pizza Topings',
|
||||
* subTitle: 'Select your topings'
|
||||
* title: 'Pizza Toppings',
|
||||
* subTitle: 'Select your toppings'
|
||||
* };
|
||||
* ```
|
||||
*
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
<ion-content class="outer-content">
|
||||
|
||||
<ion-select [(ngModel)]="topings" multiple="true" cancelText="Nah" okText="Okay!">
|
||||
<ion-label>Topings</ion-label>
|
||||
<ion-select [(ngModel)]="toppings" multiple="true" cancelText="Nah" okText="Okay!">
|
||||
<ion-label>Toppings</ion-label>
|
||||
<ion-option value="bacon">Bacon</ion-option>
|
||||
<ion-option value="olives">Black Olives</ion-option>
|
||||
<ion-option value="xcheese">Extra Cheese</ion-option>
|
||||
@ -27,7 +27,7 @@
|
||||
</ion-select>
|
||||
|
||||
<p aria-hidden="true" padding>
|
||||
<code>topings: {{topings}}</code><br>
|
||||
<code>toppings: {{toppings}}</code><br>
|
||||
<code>carOptions: {{carOptions}}</code><br>
|
||||
</p>
|
||||
|
||||
|
Reference in New Issue
Block a user