You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mcq.component.html 412 B

4 年之前
12345678910111213
  1. <section class="question">
  2. <h3> {{ text }} </h3>
  3. <div class="options">
  4. <button *ngFor="let choice of choices"
  5. (click)="selectedChoice = choice.value"
  6. [ngClass]="{'active': selectedChoice === choice.value }">
  7. {{ choice.text }}
  8. <ion-checkbox mode="ios" [checked]="selectedChoice === choice.value"></ion-checkbox>
  9. </button>
  10. </div>
  11. </section>