I am implementing table draggable with vue. However, what I want is to trigger only the column button on the v-icon, but when all the rows are pressed, all triggers. How can I limit the draggable to only certain columns?
<v-data-table
:headers="headers"
loading-text="편성 리스트가 없습니다"
:loading="loadingToggle"
item-key="id"
:items="adList"
:hide-default-footer="true"
>
<template v-slot:body="props">
<draggable :list="props.items" tag="tbody">
<tr v-for="(item, idx) in props.items" :key="idx">
<td><v-icon>mdi-menu</v-icon></td>
<td>{{ idx + 1 }}</td>
<td>{{ item.Sid }}</td>
<td>{{ item.companySid }}</td>
<td>{{ item.companyName }}</td>
<td>{{ item.gnName }}</td>
<td>{{ item.Slot }}</td>
<td>{{ item.StartDate }}</td>
<td>{{ item.EndDate }}</td>
<td>{{ item.StatusName }}</td>
</tr>
</draggable>
</template>
</v-data-table>