mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
16 lines
343 B
JavaScript
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
|
|
}
|
|
};
|