mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
22 lines
522 B
JavaScript
22 lines
522 B
JavaScript
const TabMenuProps = [
|
|
{
|
|
name: "model",
|
|
type: "array",
|
|
default: "null",
|
|
description: "An array of menuitems."
|
|
},
|
|
{
|
|
name: "exact",
|
|
type: "boolean",
|
|
default: true,
|
|
description: "Defines if active route highlight should match the exact route path."
|
|
}
|
|
];
|
|
|
|
module.exports = {
|
|
tabmenu: {
|
|
name: "TabMenu",
|
|
description: "TabMenu is a navigation component that displays items as tab headers.",
|
|
props: TabMenuProps
|
|
}
|
|
};
|