|
@@ -82,6 +82,7 @@ export default {
|
|
|
async drop(index) {
|
|
|
if (this.draggedIndex === null) return
|
|
|
// Swap the two items
|
|
|
+ const temp=this.value[this.draggedIndex]
|
|
|
this.$set(this.value, this.draggedIndex, this.value[index]);
|
|
|
this.$set(this.value, index, temp);
|
|
|
this.draggedIndex = null;
|