Angular - Template-Driven Forms
In an Angular standalone component, you wrote:
The input does not bind correctly. What is missing?
@Component({
selector: 'app-example',
template: ``,
standalone: true
})
export class ExampleComponent {
name = '';
}The input does not bind correctly. What is missing?
