fix: Fix display issues caused by default table height (#11143)

This commit is contained in:
ssongliu 2025-12-01 18:05:37 +08:00 committed by GitHub
parent f63658db9e
commit af15659d99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -109,7 +109,7 @@ const mobile = computed(() => {
return globalStore.isMobile(); return globalStore.isMobile();
}); });
const tableRef = ref(); const tableRef = ref();
const tableHeight = ref(0); const tableHeight = ref<number | string>('');
const menuRef = ref<HTMLElement | null>(null); const menuRef = ref<HTMLElement | null>(null);
const leftSelect = ref(false); const leftSelect = ref(false);