Is there a way to pass values from a parent component to a child component without using the @Input decorator?
I'm thinking about creating an instance of the Parent class in the constructor (Dependency Injection) and then accessing the variable value as instance.variable. Would this achieve the same result?
Any help or advice would be greatly appreciated.