Hello community,
I wonder if it is possible to handle @Output() from custom angular component by itself, without creating a two way binding with @Input()? The important thing is handling only @Output()
Thanks
Like
2 comments
19:44 Aug 08, 2025
Hi Grzegorz,
You can handle an @Output() on its own. You don’t have to pair it with an @Input() or create two-way binding. An @Output() is simply an EventEmitter<T> (an event stream) that the child component emits events, the parent subscribes to or binds to that event and receives the emitted value.
Show all comments