I have 2 components: x-container and x-item. they have a hierarchy similar to < table > and < tr > or to < tr > and < td >... Hence x-item components are only effective when they're inside an x-container component:
<x-container>
<x-item></x-item>
</x-container>
I want to pass an attribute value from x-container to x-item:
<x-container att="value">
<x-item></x-item>
</x-container>
In this case I need value to be visible to x-item - is it possible? Thanks!