Skip to content

Commit

Permalink
docs(VAutocomplete): remove unnecessary optional chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Jan 3, 2024
1 parent 03c64eb commit 58b5916
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@
<template v-slot:item="{ props, item }">
<v-list-item
v-bind="props"
:prepend-avatar="item?.raw?.avatar"
:title="item?.raw?.name"
:subtitle="item?.raw?.group"
:prepend-avatar="item.raw.avatar"
:title="item.raw.name"
:subtitle="item.raw.group"
></v-list-item>
</template>
</v-autocomplete>
Expand Down

0 comments on commit 58b5916

Please # to comment.