Answers for "multiple condition class binding vue"

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
0

multiple condition class binding vue

<li :class="[{'text-pink-700': isSelected}, {'line-through': isCrossedOff}]">Item Text</li>
Posted by: Guest on July-18-2021

Browse Popular Code Answers by Language