Q:

vue class binding if else

<div :class="{ 'prop-name': boolVar }"></div>
9
<figure :style="[item.main_featured ? {'background': 'url(' + item.main_featured + ') center no-repeat'} : {'background': '#FFF'}]">
1
v-bind:style= "[condition ? {styleA} : {styleB}]"
0
vue class binding if else
<div :class="{ 'prop-name': boolVar }"></div>
:class="darkMode ? 'dark-theme' : 'light-theme'"
If darkMode is true, we apply dark-theme as our class name. 
	Otherwise we choose light-theme.
0

New to Communities?

Join the community