Answers for "vue conditional class with two conditions"

14

vue conditional class

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

vue class binding multiple conditions

<a :class="['btn', (respond === 'responseFound' ? 'btn-yellow' : 'btn-default'), (type === 1 ? 'btn-block' : 'btn-xs center-block')]">
Posted by: Guest on October-29-2020

Browse Popular Code Answers by Language