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

@ -38,7 +38,7 @@ const {
} = mixin;
const router = useRouter();
const rows = ref<any>([]);
const rows = ref<any[]>([]);
const rows2 = ref<any>([]);
const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>("");

View file

@ -40,7 +40,7 @@ const {
dialogRemove,
} = mixin;
const rows = ref<any>([]);
const rows = ref<any[]>([]);
const modalTree = ref<boolean>(false);
const personalId = ref<string>("");
const filterKeyword = ref<string>("");

View file

@ -44,7 +44,7 @@ const userNote = ref<string>("");
const filter = ref<string>("");
const Name = ref<string>();
const rowsAll = ref<any>([]);
const rows = ref<any>([]);
const rows = ref<any[]>([]);
const rowsFilter = ref<any>([]);
const myForm = ref<any>();
const files = ref<any>(null);