fix(Table): missing type on props loadingState (#2551)

This commit is contained in:
kyyy
2024-11-08 15:46:00 +07:00
committed by GitHub
parent 56e28d80db
commit 6e66990372

View File

@@ -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: {