fix bug rows

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-07-15 17:30:51 +07:00
parent 823fe93528
commit 8e422174a8
34 changed files with 34 additions and 34 deletions

View file

@ -140,7 +140,7 @@ const name = ref<string>("");
const count = ref<number>(0);
const pass = ref<number>(0);
const notpass = ref<number>(0);
const rows = ref<any>([]);
const rows = ref<any[]>([]);
const importId = ref<string>(route.params.id as string); // Period Import Id
const filter = ref<string>(""); //search data table
const visibleColumns = ref<String[]>([

View file

@ -178,7 +178,7 @@ const columns = ref<QTableProps["columns"]>([
},
]);
const rows = ref<any>([]);
const rows = ref<any[]>([]);
onMounted(async () => {
await fetchData();

View file

@ -403,7 +403,7 @@ const textTittle = ref<string>("");
const { messageError } = mixin;
const textTittleScore = ref<string>("");
const textTittleCandidate = ref<string>("");
const rows = ref<any>([]);
const rows = ref<any[]>([]);
const initialPagination = ref<Pagination>({
rowsPerPage: 0,
});