make directive to return dropdown values angular

Solutions on MaxInterview for make directive to return dropdown values angular by the best coders in the world

showing results for - "make directive to return dropdown values angular"
Cici
20 May 2018
1<select (change)="onChange($event)">
2    <option *ngFor="let v of values" [value]="v.id">{{v.name}}</option>
3</select>
4
similar questions