forked from FoundKeyGang/FoundKey
client: fix vue warning
> Invalid prop: type check failed for prop "modelValue". Expected String | Number, got Null
This commit is contained in:
parent
4b98677141
commit
8721e8844a
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ export function inputText(props: {
|
||||||
input: {
|
input: {
|
||||||
type: props.type,
|
type: props.type,
|
||||||
placeholder: props.placeholder,
|
placeholder: props.placeholder,
|
||||||
default: props.default,
|
default: props.default ?? '',
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
done: result => {
|
done: result => {
|
||||||
|
|
Loading…
Reference in a new issue