Answers for "add custom attribute to table row in vuetify"

-2

add custom attribute to table row in vuetify

<template v-slot:item="{ item }">
  <tr :class="{active: group && item.id == group.id}">
    <td>{{ item.name }}</td>
    <td>{{ item.grade }}</td>
  </tr>
</template>
Posted by: Guest on November-06-2020

Browse Popular Code Answers by Language