select means: choose 1 from N
Tags:
{
"label": "B1",
"id": "b1"
}Authors:Zhicheng Wang
<select [(ngModel)]="selection" class="form-control">
<option [ngValue]="undefined">-</option>
<option *ngFor="let option of options" [ngValue]="option">{{option.label}}</option>
</select>
<app-json-viewer [value]="selection"></app-json-viewer>