diff --git a/docs/content/2.elements/6.dropdown.md b/docs/content/2.elements/6.dropdown.md index 5787310c..74d99e1c 100644 --- a/docs/content/2.elements/6.dropdown.md +++ b/docs/content/2.elements/6.dropdown.md @@ -21,6 +21,7 @@ Pass an array of arrays to the `items` prop of the Dropdown component. Each arra - `shortcuts` - The shortcuts of the item. - `slot` - The slot of the item. - `disabled` - Whether the item is disabled. +- `class` - The class of the item. - `click` - The click handler of the item. You can also pass any property from the [NuxtLink](https://nuxt.com/docs/api/components/nuxt-link#props) component such as `to`, `exact`, etc. diff --git a/src/runtime/components/elements/Dropdown.vue b/src/runtime/components/elements/Dropdown.vue index bc8f8129..35543fc3 100644 --- a/src/runtime/components/elements/Dropdown.vue +++ b/src/runtime/components/elements/Dropdown.vue @@ -21,14 +21,14 @@