refactor DataTable component

This commit is contained in:
pa
2025-12-21 00:36:05 +09:00
committed by Natsumi
parent dff3f17c9a
commit 2ea224cf8d
11 changed files with 323 additions and 282 deletions

View File

@@ -322,7 +322,17 @@
}, 80);
}
function cancelClose() {
clearTimer('close');
clearTimer('hide');
if (isPopoverOpen(tooltipEl.value)) {
isClosing.value = false;
isOpen.value = true;
}
}
onBeforeUnmount(() => {
close(true);
clearAllTimers();
});
</script>