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