2021-05-12 09:35:29 +00:00
|
|
|
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."
|
2021-08-27 08:09:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "exact",
|
|
|
|
type: "boolean",
|
|
|
|
default: "true",
|
|
|
|
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
|
2021-05-12 09:35:29 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2021-11-17 13:10:49 +00:00
|
|
|
const MenuEvents = [
|
|
|
|
{
|
|
|
|
name: "show",
|
|
|
|
description: "Callback to invoke when the overlay is shown."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "hide",
|
|
|
|
description: "Callback to invoke when the overlay is hidden."
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2021-05-17 11:58:53 +00:00
|
|
|
const MenuSlots = [
|
|
|
|
{
|
|
|
|
name: "item",
|
|
|
|
description: "Template of a menuitem."
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2021-05-12 09:35:29 +00:00
|
|
|
module.exports = {
|
|
|
|
menu: {
|
|
|
|
name: "Menu",
|
|
|
|
description: "Menu is a navigation / command component that supports dynamic and static positioning.",
|
2021-05-17 11:58:53 +00:00
|
|
|
props: MenuProps,
|
2021-11-17 13:10:49 +00:00
|
|
|
events: MenuEvents,
|
2021-05-17 11:58:53 +00:00
|
|
|
slots: MenuSlots
|
2021-05-12 09:35:29 +00:00
|
|
|
}
|
|
|
|
};
|