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

23 lines
538 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const PanelMenuProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
},
2021-08-27 13:31:55 +00:00
{
name: "exact",
type: "boolean",
default: "true",
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
2021-05-12 09:35:29 +00:00
}
];
module.exports = {
panelmenu: {
name: "PanelMenu",
description: "PanelMenu is a hybrid of Accordion and Tree components",
2022-08-22 13:47:07 +00:00
props: PanelMenuProps
2021-05-12 09:35:29 +00:00
}
};