Created
February 21, 2020 14:14
-
-
Save CodingWithTashi/680e788028537d65d9862ba42fbd02c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mat-form-field class="example-chip-list"> | |
<mat-chip-list #chipList aria-label="Fruit selection"> | |
<mat-chip *ngFor="let fruit of fruits" [selectable]="selectable" | |
[removable]="removable" (removed)="remove(fruit)"> | |
{{fruit.name}} | |
<mat-icon matChipRemove *ngIf="removable">cancel</mat-icon> | |
</mat-chip> | |
<input placeholder="New fruit..." | |
[matChipInputFor]="chipList" | |
[matChipInputAddOnBlur]="addOnBlur" | |
(matChipInputTokenEnd)="add($event)"> | |
</mat-chip-list> | |
</mat-form-field> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment