-
+
@@ -217,11 +217,15 @@ export interface LayDatePickerProps {
modelValue?: string;
type?: "date" | "datetime" | "year" | "time" | "month" | "yearmonth";
name?: string;
+ max?: string;
+ min?: string;
+ disabled?: boolean
}
const props = withDefaults(defineProps(), {
modelValue: "",
type: "date",
+ disabled: false
});
const dropdownRef = ref(null);