diff --git a/src/runtime/components/Select.vue b/src/runtime/components/Select.vue index 213fa864d5..53e87ca1bf 100644 --- a/src/runtime/components/Select.vue +++ b/src/runtime/components/Select.vue @@ -129,7 +129,7 @@ const emits = defineEmits>() const slots = defineSlots>() const appConfig = useAppConfig() -const rootProps = useForwardPropsEmits(reactivePick(props, 'modelValue', 'defaultValue', 'open', 'defaultOpen', 'disabled', 'autocomplete', 'required', 'multiple'), emits) +const rootProps = useForwardPropsEmits(reactivePick(props, 'open', 'defaultOpen', 'disabled', 'autocomplete', 'required', 'multiple'), emits) const contentProps = toRef(() => defu(props.content, { side: 'bottom', sideOffset: 8, collisionPadding: 8, position: 'popper' }) as SelectContentProps) const arrowProps = toRef(() => props.arrow as SelectArrowProps) @@ -186,16 +186,17 @@ function onUpdateOpen(value: boolean) {