fix interface

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-03-11 17:51:15 +07:00
parent fe385cfb0c
commit 4e59108e27
2 changed files with 23 additions and 18 deletions

View file

@ -2,7 +2,8 @@
import { ref, watch } from "vue";
import { useCounterMixin } from "@/stores/mixin";
import type { QTableColumn, QTableProps } from "quasar";
import type { QTableColumn } from "quasar";
import type { DataHistory } from "@/modules/04_registryPerson/interface/index/Main";
import DialogHeader from "@/components/DialogHeader.vue";
@ -22,8 +23,8 @@ const props = defineProps({
});
const filter = ref<string>("");
const rows = ref<any[]>([]);
const dataMain = ref<any[]>([]);
const rows = ref<DataHistory[]>([]);
const dataMain = ref<DataHistory[]>([]);
const visibleColumns = ref<string[]>([]);
const pagination = ref({
sortBy: "lastUpdatedAt",