Set default option in mat-select

后端 未结 11 1717
北恋
北恋 2020-11-30 08:31

I have a simple select option form field in my Angular material project:

component.html

  
    

        
11条回答
  •  眼角桃花
    2020-11-30 09:10

    I was able to set the default value or whatever value using the following:
    
    Template:
              
                  Holiday Destination
                  
                    New York
                    London
                    Delhi
                    Oslo
                  
              
    
    Component:
    
    export class WhateverComponent implements OnInit{
    
    selectedCity: string;    
    
    }
    
    ngOnInit() {
        this.selectedCity = 'london';
    } 
    
    }
    

提交回复
热议问题