-3

Is there any alternative for @Input() and @Output() for sending data between components in angular?

CodeNotFound
  • 22,153
  • 10
  • 68
  • 69
Rishi RD
  • 1
  • 1

1 Answers1

4

There is an entire section in the official docs dedicated to this topic. Check it out.

The gist of it:

  • @Input() and @Output()
  • @ViewChild() and template variables.
  • via a service (with Subject and Observables)
Tomasz Kula
  • 16,199
  • 2
  • 68
  • 79