I have select list:
<select (change)="onChange($event.target.value)">
<option
*ngFor="let option of tab.content.value()"
[value]="option"
>{{ option.name }}</option
>
</select>
I have tried to get model option
as selected value:
onChange(data) {
console.log(data);
}