Set default option in mat-select

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

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

component.html

  
    

        
11条回答
  •  忘掉有多难
    2020-11-30 08:49

    Try this

    
        
            Domain
            Exact
        
    
    

    Component:

    export class SelectValueBindingExample {
        public modeselect = 'Domain';
    }
    

    Live demo

    Also, don't forget to import FormsModule in your app.module

提交回复
热议问题