1、sortablejs
npm install sortablejs --save
2、引入
import Sortable from 'sortablejs'
3、 mounted
mounted() {
this.columnDrop()
},
4、mothods
columnDrop() {
let tbody = document.querySelector('.ivu-table-header tr')
let _this = this
Sortable.create(tbody, {
onEnd(evt) {
_this.columnsList.splice(evt.newIndex, 0, _this.columnsList.splice(evt.oldIndex, 1)[0]);
var newArray = _this.columnsList.slice(0);
_this.columnsList = [];
_this.$nextTick(function () {
_this.columnsList = newArray;
});
}
})
},
注意,columnsList是表格column, 最后使用this.$nextTick() ,不然页面会出现数据拖拽了标题没有变化的bug