I want achieve the functionality what you can see in the picture however looks like item.actions slot is no longer available in for v-data-table. Could you help me how can I achieve this functionality?
<div class="text-overline mb-1">Scopes</div>
<v-data-table items-per-page="5" density="compact" :items="state.clientScopes"
:headers="scopeHeaders">
<template v-slot:item.actions="{ item }">
<v-icon size="small" class="me-2">mdi-pencil</v-icon>
<v-icon size="small">mdi-delete</v-icon>
</template>
</v-data-table>
