We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d110c0a commit 80e154bCopy full SHA for 80e154b
packages/vuetify/src/components/VList/VListItem.tsx
@@ -152,7 +152,7 @@ export const VListItem = genericComponent<VListItemSlots>()({
152
props.link !== false &&
153
(props.link || link.isClickable.value || isSelectable.value)
154
)
155
- const role = computed(() => list ? (isSelectable.value ? 'option' : 'listitem') : undefined)
+ const role = computed(() => list ? (isLink.value ? 'link' : isSelectable.value ? 'option' : 'listitem') : undefined)
156
const ariaSelected = computed(() => {
157
if (!isSelectable.value) return undefined
158
return root.activatable.value ? isActivated.value
0 commit comments