diff --git a/packages/arco-lib/src/components/Select.tsx b/packages/arco-lib/src/components/Select.tsx index ddb94bed..ff6f03ba 100644 --- a/packages/arco-lib/src/components/Select.tsx +++ b/packages/arco-lib/src/components/Select.tsx @@ -74,7 +74,7 @@ export const Select = implementRuntimeComponent({ customStyle, callbackMap, mergeState, - defaultValue = '', + defaultValue, subscribeMethods, } = props; const { @@ -92,7 +92,7 @@ export const Select = implementRuntimeComponent({ } = getComponentProps(props); const [value, setValue] = useStateValue( - defaultValue, + defaultValue || undefined, mergeState, updateWhenDefaultValueChanges, undefined,