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

29 lines
694 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const BreadcrumbProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "home",
type: "menuitem",
default: "null",
description: "Configuration for the home icon."
2021-08-27 11:48:05 +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 = {
breadcrumb: {
name: "Breadcrumb",
description: "Breadcrumb provides contextual information about page hierarchy.",
2022-08-22 13:47:07 +00:00
props: BreadcrumbProps
2021-05-12 09:35:29 +00:00
}
};