[Vuejs]-Need to add if/then to a item created in a div

0👍

So I figured it out. I had to use the v-if and v-else-if to accomplish this.

<h4 class="text-black text-center" v-if="item.court === '53'">John Doe</h4>
<h4 class="text-black text-center" v-else-if="item.court === '126'">Jane Doe</h4>

Leave a comment