Gathering detailed insights and metrics for el-table-draggable
Gathering detailed insights and metrics for el-table-draggable
Gathering detailed insights and metrics for el-table-draggable
Gathering detailed insights and metrics for el-table-draggable
npm install el-table-draggable
Typescript
Module System
Node Version
NPM Version
JavaScript (65.31%)
Vue (33.8%)
HTML (0.89%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
135 Stars
97 Commits
24 Forks
1 Watchers
2 Branches
2 Contributors
Updated on Jun 17, 2025
Latest Version
1.4.12
Package Id
el-table-draggable@1.4.12
Unpacked Size
2.44 MB
Size
627.40 kB
File Count
14
NPM Version
6.14.16
Node Version
12.22.12
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Let el-table support sortable.js
sortablejs
el-table
1yarn add el-table-draggable 2 3npm i -S el-table-draggable
1import ElTableDraggable from "el-table-draggable"; 2 3export default { 4 components: { 5 ElTableDraggable, 6 }, 7};
1<template> 2 <el-table-draggable> 3 <el-table row-key></el-table> 4 </el-table-draggable> 5</template>
the wrapper tag of el-table, default is div
support drag column
set onMove callback
1onMove: function (/**Event*/evt, /**Event*/originalEvent, domInfo) { 2 // Example: https://jsbin.com/nawahef/edit?js,output 3 evt.dragged; // dragged HTMLElement 4 evt.draggedRect; // DOMRect {left, top, right, bottom} 5 evt.related; // HTMLElement on which have guided 6 evt.relatedRect; // DOMRect 7 evt.willInsertAfter; // Boolean that is true if Sortable will insert drag element after target by default 8 originalEvent.clientY; // mouse position 9 10 domInfo.dragged // the origin dom info of dragged tr, like parent domInfo, level, data, and it's index 11 domInfo.related // like dragged 12 13 // return false; — for cancel 14 // return -1; — insert before target 15 // return 1; — insert after target 16},
data or cloumn after change
sortablejs's option, the option start with on
, ExampleonSort => @sort
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 5
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
71 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More