Merge branch 'main' into project-list

This commit is contained in:
yoon 2025-02-10 15:13:16 +09:00
commit 62047cbf80

View File

@ -12,6 +12,7 @@
:type="type"
@input="updateInput"
:value="computedValue"
:disabled="disabled"
:maxLength="maxlength"
:placeholder="title"
@blur="$emit('blur')"
@ -26,6 +27,7 @@
:max="type === 'date' ? today : null"
@input="updateInput"
:value="computedValue"
:disabled="disabled"
:maxLength="maxlength"
:placeholder="title"
@blur="$emit('blur')"
@ -65,6 +67,11 @@
default: '',
required: false,
},
disabled: {
type: Boolean,
default: false,
required: false,
},
maxlength: {
type: Number,
default: 30,