I created my component (A) by combining multiple html elements, but I have two questions.
How do I define methods (such as get, etc.) on my component? I have tried @Output, @ViewChild, etc. but they are not working. I am looking for an alternative way to develop this.
How can I locate my component (A) in the home component?
Another question I have is...
- How can I implement a focus out event for my component? Which keyword should I use - (ngFocusOut), (focusout), (ngBlur), (blur)? None of these seem to be working for me.
Please help me!!