UI เพิ่มประวัติการฝึกอบรม/ดูงานของข้าราชการกรุงเทพมหานครสามัญ(ยังไม่เสร็จดี)
This commit is contained in:
parent
ccf4e3d47d
commit
648c613f4f
6 changed files with 699 additions and 5 deletions
|
|
@ -1,7 +1,8 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { reactive } from "vue";
|
||||
|
||||
import { ref } from 'vue'
|
||||
import type { FormQueryProject } from "@/modules/15_development/interface/request/Main";
|
||||
import type { QTableProps } from "quasar";
|
||||
|
||||
// store
|
||||
export const useDevelopmentDataStore = defineStore(
|
||||
|
|
@ -11,8 +12,15 @@ export const useDevelopmentDataStore = defineStore(
|
|||
year: new Date().getFullYear(),
|
||||
keyword: "",
|
||||
});
|
||||
|
||||
const visibleColumns = ref<string[]>([]);
|
||||
const columns = ref<QTableProps["columns"]>([]);
|
||||
const rows = ref<any[]>([])
|
||||
return {
|
||||
formFilter,
|
||||
visibleColumns,
|
||||
columns,
|
||||
rows,
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue