diff --git a/src/runtime/components/forms/Select.vue b/src/runtime/components/forms/Select.vue index 03ebc8d3c7..cf7f90b363 100644 --- a/src/runtime/components/forms/Select.vue +++ b/src/runtime/components/forms/Select.vue @@ -199,11 +199,11 @@ export default defineComponent({ } const guessOptionValue = (option: any) => { - return get(option, props.valueAttribute, get(option, props.optionAttribute)) + return get(option, props.valueAttribute, '') } const guessOptionText = (option: any) => { - return get(option, props.optionAttribute, get(option, props.valueAttribute)) + return get(option, props.optionAttribute, '') } const normalizeOption = (option: any) => {