2022-09-12 07:13:52 +00:00
|
|
|
const BreadcrumbProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'model',
|
|
|
|
type: 'array',
|
|
|
|
default: 'null',
|
|
|
|
description: 'An array of menuitems.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'home',
|
|
|
|
type: 'menuitem',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Configuration for the home icon.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'exact',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'true',
|
2022-09-12 07:13:52 +00:00
|
|
|
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
const BreadcrumbSlots = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'item',
|
|
|
|
description: 'Template of a menuitem.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
breadcrumb: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'Breadcrumb',
|
|
|
|
description: 'Breadcrumb provides contextual information about page hierarchy.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: BreadcrumbProps,
|
|
|
|
slots: BreadcrumbSlots
|
|
|
|
}
|
|
|
|
};
|