我正在使用angular5“ Gradient Able”主题。我正在使用主题的多选下拉组件,其中绑定了我来自api的列表。
这是component.html
<ng-select [ngClass]="'ng-select'" (ngModelChange)="onChange($event)" [options]="gateways" placeholder="Select Gateway" [multiple]="true"
[allowClear]="true" [(ngModel)]="selectedGateways">
<ng-template #optionTemplate let-option="option">
<div class="famfamfam-flags {{option?.value.toLowerCase()}}"></div>
{{option.label}}
</ng-template>
</ng-select>
现在,我想在此多选下拉菜单中设置默认选项,该选项必须显示在屏幕上。 如何将默认选项设置为多选?