[Vuejs]-HTML table initialized with Vue.js : how to alternate row color

3👍

Add an index to the v-for

<template v-for="(entry, index) in filteredHeroes">
    <tr :class="{'table-light': index % 2}">

Leave a comment