timdeschryver / ng-signal-forms

105 stars 7 forks source link

<form> support #42

Open alexregier opened 2 months ago

alexregier commented 2 months ago

In traditional reactive forms in Angular, you would link the main formGroup to the from, like this: <form [formGroup]="form" (ngSubmit)="onSubmit()"> ... </form>.

With this we can have the submit event and improved accessibility. Is there support for it? How would it be done?