Angular Material: mat-select not selecting default

后端 未结 17 1368
不思量自难忘°
不思量自难忘° 2020-11-28 23:18

I have a mat-select where the options are all objects defined in an array. I am trying to set the value to default to one of the options, however it is being left selected

17条回答
  •  眼角桃花
    2020-11-29 00:03

    You should be binding it as [value] in the mat-option as below,

    
      
        {{ option.name }}
      
    
    

    LIVE DEMO

提交回复
热议问题