Looking to apply inline styles to a child component? I am trying to pass properties like height: 200px and overflow-y: scroll.
I attempted passing it this way:
but had no luck.<Childcomponent style="height: 200px; overflow-y: scroll;" />
Then I tried this:
with the same disappointing result..<Childcomponent :style="{'height': '200px'; 'overflow-y': 'scroll'}" />
Is there a proper way to bind inline style to a child component?