비밀번호 4자리 이상

This commit is contained in:
yoon 2025-03-18 15:50:29 +09:00
parent 4c380efec7
commit 8c6e54316a

View File

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