primevue-mirror/api-generator/components/tabview.js
Tuğçe Küçükoğlu 8681911998 Fixed #1138 Fixed #962
2021-05-12 12:35:29 +03:00

16 lines
343 B
JavaScript

const TabViewProps = [
{
name: "activeIndex",
type: "number",
default: "0",
description: "Index of the active tab."
}
];
module.exports = {
tabview: {
name: "TabView",
description: "TabView is a container component to group content with tabs.",
props: TabViewProps
}
};