From bc4a81424e444636d91109ea9f7754317ab3a863 Mon Sep 17 00:00:00 2001 From: Sayandip Paul <68201896+MrPaul98@users.noreply.github.com> Date: Thu, 9 Feb 2023 20:15:17 +0530 Subject: [PATCH] Minimum height issue. This solution will help the development to set minimum for the table. Thank you. --- src/components/Table.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Table.vue b/src/components/Table.vue index 9db76153..31efa3a6 100644 --- a/src/components/Table.vue +++ b/src/components/Table.vue @@ -374,6 +374,7 @@ export default { props: { isLoading: { default: null, type: Boolean }, maxHeight: { default: null, type: String }, + minHeight: { default: null, type: String }, fixedHeader: Boolean , theme: { default: '' }, mode: { default: 'local' }, // could be remote @@ -589,6 +590,7 @@ export default { return { overflow: 'scroll-y', maxHeight: this.maxHeight ? this.maxHeight : 'auto', + minHeight: this.minHeight ? this.minHeight : 'auto', }; },