vue管理后台列表实现拖拽
1、引入js方法
"sortablejs": "^1.14.0",
npm install sortablejs --save
import Sortable from 'sortablejs'
2、
rowDrop() {
const tbody = document.querySelector('.el-table__body-wrapper tbody')
const _this = this
Sortable.create(tbody, {
onEnd({ newIndex, oldIndex }) {
const currRow = _this.tableData.splice(oldIndex, 1)[0]//老的数据
_this.tableData.splice(newIndex, 0, currRow)//替换掉老的一列数据
let sortedArray = _this.tableData
vue管理后台列表实现拖拽最先出现在Python成神之路。
共有 0 条评论