Merge branch 'main' into project-list
This commit is contained in:
commit
62047cbf80
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user