2022-09-12 07:13:52 +00:00
|
|
|
const PanelMenuProps = [
|
|
|
|
{
|
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: 'expandedKeys',
|
|
|
|
type: 'object',
|
|
|
|
default: 'null',
|
|
|
|
description: 'A map of keys to represent the expansion state in controlled mode.'
|
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:58:36 +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 PanelMenuSlots = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'item',
|
2023-04-05 12:14:26 +00:00
|
|
|
description: 'Custom item template.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'submenuicon',
|
|
|
|
description: 'Custom submenu icon template.'
|
2023-04-17 06:30:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'headericon',
|
|
|
|
description: 'Custom header icon template.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'itemicon',
|
|
|
|
description: 'Custom item icon template.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
panelmenu: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'PanelMenu',
|
|
|
|
description: 'PanelMenu is a hybrid of Accordion and Tree components',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: PanelMenuProps,
|
|
|
|
slots: PanelMenuSlots
|
|
|
|
}
|
|
|
|
};
|