I have three components (C1, C2, C3)nested, which means C2 is invoked in C1 and C3 is invoked in C2. I wanted to send the data which is in C1 to C3 via property binding.
In C1's template, I did bind the variable, which I can receive in C2 via @Input and in C2's template, I did bind the same variable (@Input) but I am not getting in C3.
It only works if I store the data in a temporary variable in C2 and bind the (temporary) variable in C2's template, can receive in C3.
So is it mandatory to store the data in a temporary variable or is there any workaround?