ui รายการโครงการ/หลักสูตรการฝึกอบรมที่หน่วยงานของกรุงเทพมหานครเป็นผู้จัด

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-25 18:01:33 +07:00
parent 179a2b395e
commit c084262a40
9 changed files with 1072 additions and 93 deletions

View file

@ -1,6 +1,16 @@
import { defineStore } from "pinia";
import { reactive } from "vue";
// store
export const useDevelopmentDataStore = defineStore("developmentDataStore", () => {
return {};
});
// store
export const useDevelopmentDataStore = defineStore(
"developmentDataStore",
() => {
const formFilter = reactive({
year: new Date().getFullYear(),
keyword: "",
});
return {
formFilter,
};
}
);