fix interface
This commit is contained in:
parent
fe385cfb0c
commit
4e59108e27
2 changed files with 23 additions and 18 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue