แก้ฟิลเตอร์

This commit is contained in:
setthawutttty 2025-06-16 13:35:59 +07:00
parent c289880166
commit 55f865baf7
2 changed files with 9 additions and 2 deletions

View file

@ -22,6 +22,7 @@ export const useChangeRoundDataStore = defineStore(
"changeRoundDataStore",
() => {
const roundOp = ref<any>([]);
const roundOpMain = ref<any>([]);
//ค้นหา คอลัมน์ คอลัมน์ที่แสดง
const visibleColumns = ref<string[]>([
"cardId",
@ -235,7 +236,8 @@ export const useChangeRoundDataStore = defineStore(
totalListMain,
maxPageMain,
roundOp
roundOp,
roundOpMain
};
}
);