PrimeNg selectButton:如何显示一个选中

时间:2017-07-28 22:55:25

标签: angular primeng

我有一个PrimeNg selectButtons数组,需要显示第一个按下。 没有找到任何指导。 有人知道这样做的API吗?

1 个答案:

答案 0 :(得分:4)

您只需要初始化ngModel [(ngModel)]="selectedCity"

的值
@Component({
  selector: 'my-app',
  template: '<p-selectButton [options]="cities" [(ngModel)]="selectedCity"></p-selectButton>'
})
export class AppComponent {

    selectedCity = 'London';

    cities: any[];

    ngOnInit() {

        this.cities = [                
            {label:'London', value:'London'},
            {label:'Istanbul', value:'Istanbul'},
            {label:'Paris', value:'Paris'}
        ]
    }
}