How to submit forms in Stepper in Angular 4 material?

后端 未结 1 412
生来不讨喜
生来不讨喜 2021-02-11 02:44

How to submit form data in the stepper of angular material. I am following the example from angular material https://material.angular.io/components/stepper/examples. I did lot o

1条回答
  •  故里飘歌
    2021-02-11 02:58

    Give submit button and ngSubmit to form where you have forms inside Stepper

          
    
    
      
        
    Fill out your name
    Fill out your address
    Done You are now done.

    Component

    form1(){
        console.log(this.firstFormGroup.value);
      }
    
      form2(){
        console.log(this.secondFormGroup.value);
      }
    

    Working Demo

    0 讨论(0)
提交回复
热议问题