รายการสอบแข่งขัน / คัดเลือก แก้ all ค่าเริ่มต้น

This commit is contained in:
setthawutttty 2023-10-05 10:01:25 +07:00
parent d761315a50
commit bb39a81fab

View file

@ -195,7 +195,7 @@ const resetFilter = () => {
};
//-------------------||------------------------------//
const examTime = ref<number | string>("all");
const examTime = ref<number | string>("");
const examTimeOP = reactive<DataOption1[]>([{ id: "all", name: "ทั้งหมด" }]);
const addedExamTimeValues: Set<number> = new Set();
@ -215,7 +215,7 @@ const examTimeFilter = async () => {
};
//
const examType = ref<string | null>("all");
const examType = ref<string | null>("");
const examTypeOP = ref<DataOption1[]>([{ id: "all", name: "ทั้งหมด" }]);
const addedExamTypeValues: Set<string> = new Set();
const examTypeFilter = () => {