<template>
<!-- 省略其他配置 -->
<el-upload ref="upload" :file-list.sync="fileList"></el-upload>
</template>
<script>
import Sortable from 'sortablejs';
export default {
data() {
return {
fileList: []
};
},
mounted() {
this.initDragSort();
},
methods: {
// 支持拖拽排序
initDragSort() {
const el = this.$refs.upload.$el.querySelectorAll('.el-upload-list')[0];
Sortable.create(el, {
onEnd: ({ oldIndex, newIndex }) => {
// 交换位置
const arr = this.fileList;
const page = arr[oldIndex];
arr.splice(oldIndex, 1);
arr.splice(newIndex, 0, page);
}
});
}
}
};
</script>
文章来源地址https://www.toymoban.com/news/detail-804577.html
文章来源:https://www.toymoban.com/news/detail-804577.html
到了这里,关于element-ui的el-upload组件实现上传拖拽排序图片顺序(sortablejs)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!