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."
|
2023-04-26 09:57:16 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pt',
|
|
|
|
type: 'any',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Uses to pass attributes to DOM elements inside the component.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
const BreadcrumbSlots = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'item',
|
2023-04-05 11:55:26 +00:00
|
|
|
description: 'Custom item template.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'separator',
|
|
|
|
description: 'Custom separator template.'
|
2023-04-17 05:42:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'itemicon',
|
|
|
|
description: 'Custom item icon template.'
|
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
|
|
|
|
}
|
|
|
|
};
|