Fixed #1268 - Add lazy option to TabView and Accordion

This commit is contained in:
Cagatay Civici 2021-05-18 11:57:37 +03:00
parent fd7267bc01
commit 1253676112
6 changed files with 84 additions and 6 deletions

View file

@ -4,6 +4,12 @@ const TabViewProps = [
type: "number",
default: "0",
description: "Index of the active tab."
},
{
name: "lazy",
type: "boolean",
default: "false",
description: "When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css."
}
];