From 39b5d8c4155426a720a22b7d2bf51312e660980b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Mon, 10 May 2021 11:22:27 +0300 Subject: [PATCH] reorder func edited --- src/components/picklist/PickList.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/picklist/PickList.vue b/src/components/picklist/PickList.vue index 23c809a75..06fe20636 100755 --- a/src/components/picklist/PickList.vue +++ b/src/components/picklist/PickList.vue @@ -178,7 +178,8 @@ export default { this.$emit('reorder', { originalEvent: event, value: value, - direction: this.reorderDirection + direction: this.reorderDirection, + listIndex: listIndex }); } }, @@ -210,7 +211,8 @@ export default { this.$emit('reorder', { originalEvent: event, value: value, - direction: this.reorderDirection + direction: this.reorderDirection, + listIndex: listIndex }); } }, @@ -240,7 +242,8 @@ export default { this.$emit('reorder', { originalEvent: event, value: value, - direction: this.reorderDirection + direction: this.reorderDirection, + listIndex: listIndex }); } },