i have made a calendar in momentjs and would like to color e.g the weekends differently.
The dates and days are rendered in a v-for like so:
<tr v-for="(day, index) in days" :key="index" class="grid-container">
<td class="grid-item">{{ day.date.format("Do") }}</td>
<td class="grid-item">{{ day.date.format("dddd") }}</td>
<td class="grid-item">{{ day.workhours }}</td>
<td class="grid-item">{{ day.overtime }}</td>
<td class="grid-item">{{ day.flextime}}</td>
<td class="grid-item">{{ day.sickness}}</td>
<td class="grid-item">{{ day.vacation}}</td>
</tr>
is it possible to change e.g the background color of all of these td's if
day.date == "Saturday"