บันทึกผล

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-07-30 18:07:41 +07:00
parent 3531301713
commit c91843ceba
9 changed files with 918 additions and 170 deletions

View file

@ -8,6 +8,7 @@ import type { FormAddProject } from "@/modules/15_development/interface/request/
export const useDevelopmentDataStore = defineStore(
"developmentDataStore",
() => {
const projectName = ref<string>("");
const projectStatus = ref<string>("ONGOING");
const statusEdit = ref<boolean>(false);
const formAddProject = reactive<FormAddProject>({
@ -133,6 +134,7 @@ export const useDevelopmentDataStore = defineStore(
rows,
statusEdit,
projectStatus,
projectName,
};
}
);