Can the draggable plug-in in vue be bound to a tag of a drag-and-drop object?

The drag-and-drop plug-in is used in the

project, which now implements the drag-and-drop of the table (the code is as follows), but according to the current way of writing, if you add operations such as click events to the contents of the table in the future, the cross icon that is now moved to the cell will cause misunderstanding. Now you want to add a crosshair drag icon at the end of the table cell, you have to hold down this icon to drag the table row, and there is no drag effect when dragging other row elements. Can draggable bind a drag event to an element?


    
<table>
    <thead>
        <tr>
            <th></th>
            <th></th>
            <th></th>
            ...
        </tr>
    </thread>
    <draggable element="tbody"
        :list="..."
        @update="..."
    >
        <transition-group name="myListAni">
            <tr v-for="(item,index) in ..." :key="index">
                <td></td>
                <td></td>
                <td></td>
                ...
            </tr>
        </transition-group>
    </draggable>
 </table>
Jun.18,2021

options

handle: ".my-handle", / / Drag handle selector within list items
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30fb4-2bd86.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30fb4-2bd86.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?