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
|
|
|
},
|
2023-04-26 09:57:16 +00:00
|
|
|
{
|
|
|
|
name: 'pt',
|
|
|
|
type: 'any',
|
|
|
|
default: 'null',
|
2023-08-01 14:01:12 +00:00
|
|
|
description: 'Used to pass attributes to DOM elements inside the component.'
|
2023-07-06 13:20:37 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'unstyled',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'false',
|
|
|
|
description: 'When enabled, it removes component related styles in the core.'
|
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
|
|
|
|
}
|
|
|
|
};
|