Answers for "how to add dynamic css class to a div in vue based on value of object"

14

vue conditional class

<div :class="{ 'prop-name': boolVar }"></div>
Posted by: Guest on March-15-2020
3

vue class binding

<div v-bind:class="{ active: isActive }"></div>
Posted by: Guest on December-19-2019

Code answers related to "how to add dynamic css class to a div in vue based on value of object"

Browse Popular Code Answers by Language