el-table wants to press and hold shift for multiple selections. The general idea is to listen for keyboard events, enable keydown multiple selections, and disable keyup multiple selections
<el-table @keydown.shift.native="shiftdown" @keyup.shift.native="shiftup">
</el-table>
the above code, keydown can enter the method, keyup is not easy to use, how should I write to capture keyup events, I package a div in the outermost layer is still invalid.
<div @keydown.shift.native="shiftdown" @keyup.shift.native="shiftup">
<el-table>
</el-table>
</div>