From 6e66990372ef6bd7c109a64c753d9b50e96a450b Mon Sep 17 00:00:00 2001 From: kyyy <60952577+rdjanuar@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:46:00 +0700 Subject: [PATCH] fix(Table): missing type on props `loadingState` (#2551) --- src/runtime/components/data/Table.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/components/data/Table.vue b/src/runtime/components/data/Table.vue index 1fb1e8c9..6c68eb8e 100644 --- a/src/runtime/components/data/Table.vue +++ b/src/runtime/components/data/Table.vue @@ -221,7 +221,7 @@ export default defineComponent({ default: false }, loadingState: { - type: Object as PropType<{ icon: string, label: string }>, + type: Object as PropType<{ icon: string, label: string } | null>, default: () => config.default.loadingState }, emptyState: {