91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
const MenuProps = [
|
|
{
|
|
name: 'modelValue',
|
|
type: 'array',
|
|
default: 'null',
|
|
description: 'An array of menuitems.'
|
|
},
|
|
{
|
|
name: 'popup',
|
|
type: 'boolean',
|
|
default: 'false',
|
|
description: 'Defines if menu would displayed as a popup.'
|
|
},
|
|
{
|
|
name: 'appendTo',
|
|
type: 'string',
|
|
default: 'body',
|
|
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.'
|
|
},
|
|
{
|
|
name: 'baseZIndex',
|
|
type: 'number',
|
|
default: '0',
|
|
description: 'Base zIndex value to use in layering.'
|
|
},
|
|
{
|
|
name: 'autoZIndex',
|
|
type: 'boolean',
|
|
default: 'true',
|
|
description: 'Whether to automatically manage layering.'
|
|
},
|
|
{
|
|
name: 'exact',
|
|
type: 'boolean',
|
|
default: 'true',
|
|
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
|
|
},
|
|
{
|
|
name: 'pt',
|
|
type: 'any',
|
|
default: 'null',
|
|
description: 'Uses to pass attributes to DOM elements inside the component.'
|
|
},
|
|
{
|
|
name: 'unstyled',
|
|
type: 'boolean',
|
|
default: 'false',
|
|
description: 'When enabled, it removes component related styles in the core.'
|
|
}
|
|
];
|
|
|
|
const MenuEvents = [
|
|
{
|
|
name: 'show',
|
|
description: 'Callback to invoke when the overlay is shown.'
|
|
},
|
|
{
|
|
name: 'hide',
|
|
description: 'Callback to invoke when the overlay is hidden.'
|
|
}
|
|
];
|
|
|
|
const MenuSlots = [
|
|
{
|
|
name: 'start',
|
|
description: 'Custom content before the content'
|
|
},
|
|
{
|
|
name: 'end',
|
|
description: 'Custom content after the content'
|
|
},
|
|
{
|
|
name: 'item',
|
|
description: 'Template of a menuitem.'
|
|
},
|
|
{
|
|
name: 'itemicon',
|
|
description: 'Custom item icon template.'
|
|
}
|
|
];
|
|
|
|
module.exports = {
|
|
menu: {
|
|
name: 'Menu',
|
|
description: 'Menu is a navigation / command component that supports dynamic and static positioning.',
|
|
props: MenuProps,
|
|
events: MenuEvents,
|
|
slots: MenuSlots
|
|
}
|
|
};
|