type Date
This commit is contained in:
parent
59381415b2
commit
1d4ca69130
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ const id = ref<string>(route.params.id as string);
|
|||
|
||||
const historyStatusOb = reactive<HistoryStatusType>({
|
||||
status: "",
|
||||
createdAt: "",
|
||||
createdAt: new Date,
|
||||
});
|
||||
|
||||
const fileOb = reactive<FileObType>({
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ const modalEdit = ref<boolean>(false);
|
|||
|
||||
const historyStatusOb = reactive<HistoryStatusType[]>([{
|
||||
status: "",
|
||||
createdAt: "",
|
||||
createdAt: new Date(),
|
||||
}]);
|
||||
|
||||
const formData = reactive<any>({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue