fix: transfer delete error, close #5975

pull/6019/head
tangjinzhou 2022-09-27 10:49:49 +08:00
parent 8318b731b4
commit 714a6f4764
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ const ListBody = defineComponent({
};
const handleItemRemove = (item: TransferItem) => {
emit('itemRemove', item.key);
emit('itemRemove', [item.key]);
};
const handleScroll = (e: Event) => {