Angular - Template-Driven Forms
What is wrong with this standalone component setup for using
Template:
[(ngModel)]? @Component({
standalone: true,
imports: []
})
export class MyComponent {
email = '';
}Template:
<input [(ngModel)]="email" />
