0👍
✅
You can bind inline styles with v-bind:style
or use the :style
shorthand.
<div v-for"item in items" :style="{ backgroundColor: item.background }">
{{item.name}}
</div>
You should read the Class and Style Binding Guide.
Source:stackexchange.com