ui รายการโครงการ/หลักสูตรการฝึกอบรมที่หน่วยงานของกรุงเทพมหานครเป็นผู้จัด
This commit is contained in:
parent
179a2b395e
commit
c084262a40
9 changed files with 1072 additions and 93 deletions
|
|
@ -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,
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue