vue inline style conditional code example
Example 1: inline style vue
<div :style="{color: ' #f67e7e'}" ></div>
Example 2: bind style with condition in vue
<figure :style="[item.main_featured ? {'background': 'url(' + item.main_featured + ') center no-repeat'} : {'background': '#FFF'}]">
Example 3: vue inline style bind
<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }"></div>
Example 4: vuejs :class
<div
class="static"
v-bind:class="{ active: isActive, 'text-danger': hasError }"
></div>