ปรับ ประเมินบุคคล

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-12-26 16:21:57 +07:00
parent 864c7c3637
commit d1861f7a97
7 changed files with 338 additions and 31 deletions

View file

@ -1,7 +1,13 @@
import { defineStore } from "pinia";
import { ref } from "vue";
import type { QTableProps } from "quasar";
export const useEvaluateStore = defineStore("evaluateStore", () => {
const filterKeyword = ref<string>("");
const columns = ref<QTableProps["columns"]>([]);
const visibleColumns = ref<string[]>([]);
const row = ref<any>();
const tabMenu = ref<string>("1");
const showLoadStatus = ref<boolean>(false);
const step = ref<number>(1);
@ -23,6 +29,11 @@ export const useEvaluateStore = defineStore("evaluateStore", () => {
const evaluateId = ref<string>("");
return {
filterKeyword,
columns,
visibleColumns,
row,
tabMenu,
step,
currentStep,