diff --git a/components/lib/tabs/BaseTabs.vue b/components/lib/tabs/BaseTabs.vue
index 6642467fd..a649e7242 100644
--- a/components/lib/tabs/BaseTabs.vue
+++ b/components/lib/tabs/BaseTabs.vue
@@ -22,6 +22,10 @@ export default {
type: Boolean,
default: false
},
+ scrollHeight: {
+ type: String,
+ default: undefined
+ },
showNavigators: {
type: Boolean,
default: true
diff --git a/components/lib/tabs/Tabs.d.ts b/components/lib/tabs/Tabs.d.ts
index 80a05e413..65c58b236 100644
--- a/components/lib/tabs/Tabs.d.ts
+++ b/components/lib/tabs/Tabs.d.ts
@@ -104,6 +104,10 @@ export interface TabsProps {
* @defaultValue false
*/
scrollable?: boolean | undefined;
+ /**
+ * Height of the viewport, a scrollbar is defined if height of list exceeds this value.
+ */
+ scrollHeight?: string | undefined;
/**
* Whether to display navigation buttons in container when scrollable is enabled.
* @defaultValue true