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

35 lines
753 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const MenubarProps = [
{
2022-08-22 13:47:07 +00:00
name: "value",
2021-05-12 09:35:29 +00:00
type: "array",
default: "null",
description: "An array of menuitems."
2021-08-27 12:46:44 +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
}
];
const MenubarSlots = [
{
name: "start",
description: "Custom content before the content"
},
{
name: "end",
description: "Custom content after the content"
}
];
module.exports = {
menubar: {
name: "Menubar",
description: "Menubar is a horizontal menu component.",
props: MenubarProps,
slots: MenubarSlots
}
};