zhengyiming
8 天以前 5fc0cba8af1a9e9b1cc41fa65c8a4db89e82ee3e
packages/components/src/Input/ChooseInputWithDatePicker.vue
@@ -15,6 +15,7 @@
type Props = {
  modelValue: string | number;
  minDate?: Date;
};
const props = withDefaults(defineProps<Props>(), {});
@@ -47,6 +48,7 @@
                    emit('update:modelValue', dayjs(selectedValue).format('YYYY-MM-DD'));
                    onClose();
                  },
                  minDate: props.minDate,
                }),
            }
          ),