Browse Source

fix: ApiTransfer的targetKeys属性无效 (#2615)

pull/2620/head
qixianc94 3 years ago
committed by GitHub
parent
commit
d7f5dfeb9f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/components/Form/src/components/ApiTransfer.vue

3
src/components/Form/src/components/ApiTransfer.vue

@ -78,6 +78,9 @@
if (Array.isArray(props.value)) {
return props.value;
}
if (Array.isArray(props.targetKeys)){
return props.targetKeys;
}
return [];
});

Loading…
Cancel
Save