From 0cdd570f033cc9986c6e0b11a7162c5740301545 Mon Sep 17 00:00:00 2001 From: Pierre Romera Date: Thu, 5 Sep 2024 16:07:30 +0000 Subject: [PATCH] fix: use tfoot instead of tfooter --- src/components/PageTable/PageTable.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/PageTable/PageTable.vue b/src/components/PageTable/PageTable.vue index 2744968601..574ebf62f5 100644 --- a/src/components/PageTable/PageTable.vue +++ b/src/components/PageTable/PageTable.vue @@ -15,7 +15,7 @@ const slots = useSlots() const hasColgroup = computed(() => !!slots.colgroup) const hasThead = computed(() => !!slots.thead) const hasTbody = computed(() => !!slots.default) -const hasTfooter = computed(() => !!slots.tfooter) +const hasTfoot = computed(() => !!slots.tfoot) const classList = computed(() => { return { @@ -58,9 +58,9 @@ provide('orderBy', orderBy) - - - + + +