fix(form): 修复select过滤本地数据出错

This commit is contained in:
roymondchen 2022-04-08 20:32:28 +08:00 committed by jia000
parent 0e74970bfe
commit 4d7b135e50

View File

@ -15,7 +15,7 @@
:value-key="config.valueKey || 'value'"
:allow-create="config.allowCreate"
:disabled="disabled"
:remote-method="remoteMethod"
:remote-method="config.remote && remoteMethod"
@change="changeHandler"
@visible-change="visibleHandler"
>
@ -354,8 +354,6 @@ export default defineComponent({
return getConfig('request');
},
async getInitOption() {},
changeHandler(value: any) {
emit('change', value);
},