min 삭제

This commit is contained in:
yoon 2025-03-28 15:57:56 +09:00
parent 525a484615
commit c90ce680fc

View File

@ -14,7 +14,6 @@
:value="computedValue" :value="computedValue"
:disabled="disabled" :disabled="disabled"
:maxLength="maxlength" :maxLength="maxlength"
:minLength="minlength"
:placeholder="title" :placeholder="title"
@blur="$emit('blur')" @blur="$emit('blur')"
/> />
@ -30,7 +29,6 @@
:value="computedValue" :value="computedValue"
:disabled="disabled" :disabled="disabled"
:maxLength="maxlength" :maxLength="maxlength"
:minLength="minlength"
:placeholder="title" :placeholder="title"
@blur="$emit('blur')" @blur="$emit('blur')"
@click="handleDateClick" @click="handleDateClick"
@ -81,11 +79,6 @@
default: 30, default: 30,
required: false, required: false,
}, },
minlength: {
type: Number,
default: 4,
required: false,
},
isAlert: { isAlert: {
type: Boolean, type: Boolean,
default: false, default: false,