type Date

This commit is contained in:
setthawutttty 2023-12-14 18:05:16 +07:00
parent 59381415b2
commit 1d4ca69130
2 changed files with 2 additions and 2 deletions

View file

@ -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>({

View file

@ -53,7 +53,7 @@ const modalEdit = ref<boolean>(false);
const historyStatusOb = reactive<HistoryStatusType[]>([{
status: "",
createdAt: "",
createdAt: new Date(),
}]);
const formData = reactive<any>({