Lint changes

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 17:26:41 +03:00
parent eb2de5460c
commit 4d3a071e66
291 changed files with 28450 additions and 26621 deletions

View file

@ -1,37 +1,37 @@
const MenubarProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "An array of menuitems."
name: 'modelValue',
type: 'array',
default: 'null',
description: 'An array of menuitems.'
},
{
name: "exact",
type: "boolean",
default: "true",
name: 'exact',
type: 'boolean',
default: 'true',
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
}
];
const MenubarSlots = [
{
name: "start",
description: "Custom content before the content"
name: 'start',
description: 'Custom content before the content'
},
{
name: "end",
description: "Custom content after the content"
name: 'end',
description: 'Custom content after the content'
},
{
name: "item",
description: "Template of a menuitem."
name: 'item',
description: 'Template of a menuitem.'
}
];
module.exports = {
menubar: {
name: "Menubar",
description: "Menubar is a horizontal menu component.",
name: 'Menubar',
description: 'Menubar is a horizontal menu component.',
props: MenubarProps,
slots: MenubarSlots
}