Beantwortet
I have a component within another component. How do I pass a value from the outer component to the inner component?
some info:
- Both component have its own component dialog.
- I need to pass the value of a property (entered by the author via component dialog) from the outer to the inner.
- I am inserting the inner component into the outer component via "data-sly-resource".
<div data-sly-resource="${@path=my-path-here, resourceType='myhost/components/content/my-custom-component'}" data-sly-unwrap></div>
Thank you.