fix: ApiTransfer 不支持disabled

pull/38/head
xingyu 2023-10-15 17:36:14 +08:00
parent 84138b9be4
commit 42e633e4db
1 changed files with 9 additions and 2 deletions

View File

@ -115,8 +115,15 @@ function emitChange() {
<template>
<Transfer
v-bind="getAttrs" :data-source="getdataSource" :filter-option="filterOption" :render="(item) => item.title"
:show-select-all="showSelectAll" :selected-keys="selectedKeys" :target-keys="getTargetKeys" :show-search="showSearch"
v-bind="getAttrs"
:data-source="getdataSource"
:filter-option="filterOption"
:render="(item) => item.title"
:show-select-all="showSelectAll"
:selected-keys="selectedKeys"
:target-keys="getTargetKeys"
:show-search="showSearch"
:disabled="disabled"
@change="handleChange"
/>
</template>