mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(form): datatime没有初始值时异常
This commit is contained in:
parent
7964921389
commit
b24b3749c4
@ -32,9 +32,9 @@ const emit = defineEmits<{
|
||||
|
||||
useAddField(props.prop);
|
||||
|
||||
const value = props.model?.[props.name].toString();
|
||||
const value = props.model?.[props.name]?.toString();
|
||||
if (props.model) {
|
||||
if (value === 'Invalid Date') {
|
||||
if (!value || value === 'Invalid Date') {
|
||||
props.model[props.name] = '';
|
||||
} else {
|
||||
props.model[props.name] = datetimeFormatter(
|
||||
|
Loading…
x
Reference in New Issue
Block a user