Fixed name

pull/1280/head^2
Cagatay Civici 2021-11-16 09:58:12 +03:00
parent fb7b2b24cc
commit 3ac7d56d37
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
const DividerProps = [ const DropdownProps = [
{ {
name: "modelValue", name: "modelValue",
type: "any", type: "any",
@ -163,7 +163,7 @@ const DividerProps = [
} }
]; ];
const DividerEvents = [ const DropdownEvents = [
{ {
name: "change", name: "change",
description: "Callback to invoke on value change.", description: "Callback to invoke on value change.",
@ -247,7 +247,7 @@ const DividerEvents = [
} }
]; ];
const DividerSlots = [ const DropdownSlots = [
{ {
name: "option", name: "option",
description: "Custom content for the item's option" description: "Custom content for the item's option"
@ -294,8 +294,8 @@ module.exports = {
dropdown: { dropdown: {
name: "Dropdown", name: "Dropdown",
description: "Dropdown is used to select an item from a list of options.", description: "Dropdown is used to select an item from a list of options.",
props: DividerProps, props: DropdownProps,
events: DividerEvents, events: DropdownEvents,
slots: DividerSlots slots: DropdownSlots
} }
}; };