2024-10-30 05:24:44 +00:00
|
|
|
<select
|
|
|
|
|
[attr.id]="id()"
|
|
|
|
|
[attr.name]="name()"
|
|
|
|
|
[ngModel]="selectedOption()"
|
|
|
|
|
(ngModelChange)="setOption($event)"
|
|
|
|
|
>
|
|
|
|
|
@for (item of options(); track item) {
|
2024-07-23 16:50:12 +00:00
|
|
|
<option [value]="item.value">{{ item.label }}</option>
|
|
|
|
|
}
|
|
|
|
|
</select>
|