I am trying to bind array of object to dropdown using ng2-select.It works fine when I tried using array of string
private category: Array<object> = [{ "value": 1, "text": "Table" }, { "value": 2, "text": "Chair" }, { "value": 3, "text": "Light"}]
and my html as follow:
<ng-select [items]="category" [allowClear]="true"
placeholder="No country selected">
</ng-select>
I have also Imported selectModule in my module.ts