import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { myOptions = [ {value: 'a', label: 'A'}, {value: 'b', label: 'B'}, {value: 'c', label: 'C'}, ] }