Angular output handling

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 6

Like

2 comments

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.

If you need any further assistance, please let me know.

Show all comments