Reputation: 11
component.ts
I have this code in app.component.ts and it needs to be translated to select option
label = ['', 'label1', 'label2']
component.html
html uses ng For
<select>
<option *ngFor="let value of label">{{value}}</option>
</select>
Upvotes: 0
Views: 76