Trying to utilize a parent function across multiple layers of nested child components.
{{ $parent.$parent.testFunction('foo', 'bar') }}
This approach currently functions, however, each time I navigate through levels in the hierarchy, I must adjust the method call as follows:
{{ $parent.testFunction('foo', 'bar') }}
Is there a solution to streamline this process? The parent element is not at the root level, so that workaround won't apply. :)