Currently diving into the Vutify documentation to explore v-simple-table and v-data-table, wondering if there's a way to implement row highlighting similar to v-data-table.
For reference:
Vuetify - How to highlight row on click in v-data-table
This is how my table body is structured:
<v-simple-table dense fixed-header height="90vh" >
<template v-slot:default>
<thead > ;
<tr >
<th style="font-size: 16px;height: 40px;" width='4%' class="black--text">
Location
</th>
(...rest of the original code...)
</template>
</td>
</template>
</tr>
</tbody>
</table>
While I can currently hover over a row to display hover effects, my goal is to enable changing the background color of a row upon selection through a click event.
I'm aiming for an outcome akin to this example, adapted to work with a simple table: