primevue-mirror/api-generator/components/tabview.js

17 lines
343 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
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
}
};