0๐
โ
So you have parent component:
<child-component :bgColor="childBgColor"></child-component>
And in child component:
<div v-bind:style="{ background-color: bgColor }">
</div>
props: {
bgColor: String,
}
Source:stackexchange.com