mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
21 lines
526 B
HTML
21 lines
526 B
HTML
<ion-content>
|
|
<form (^submit)="doSubmit($event)" [ng-form-model]="fruitsForm">
|
|
|
|
<ion-list>
|
|
<div class="list-header">Some Switches</div>
|
|
<ion-checkbox [ng-control]="appleCtrl">
|
|
Apples
|
|
</ion-checkbox>
|
|
<ion-checkbox [ng-control]="bananaCtrl">
|
|
Bananas
|
|
</ion-checkbox>
|
|
<ion-checkbox [ng-control]="grapeCtrl">
|
|
Grapes
|
|
</ion-checkbox>
|
|
<ion-checkbox [ng-control]="cherryCtrl">
|
|
Cherries
|
|
</ion-checkbox>
|
|
</ion-list>
|
|
</form>
|
|
</ion-content>
|