Guest User

Untitled

a guest
Jul 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <mat-form-field class="input-width">
  2. <mat-select placeholder="Plans" formControlName="plans" (selectionChange)="select(plan)" required>
  3. <mat-option *ngFor="let plan of plans" [value]="plan.name">
  4. {{ plan.name }}
  5. </mat-option>
  6. </mat-select>
  7. </mat-form-field>
  8. <br/>
  9. ...
  10. </form
Add Comment
Please, Sign In to add comment