-
I updated my nuxt 3 project to the latest actual vuetify version 3.0.0-beta.6 and get the following error/warning message after the update. ✔ Nitro built in 880 ms nitro 17:51:47
[Vue warn]: Failed to resolve component: v-list-item-avatar
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
[Vue warn]: Failed to resolve component: v-list-item-avatar
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. My Source <v-navigation-drawer v-model="drawer" bottom temporary>
<v-list nav density="compact">
<v-list-item v-for="(item, i) in itemsTabs" :key="i" :value="item" :to="item.value" active-color="primary">
<v-list-item-avatar>
<v-icon :icon="item.icon"></v-icon>
</v-list-item-avatar>
<v-list-item-title class="text-uppercase" v-text="item.title"></v-list-item-title>
</v-list-item>
<v-divider class="my-6"></v-divider>
<v-list-item v-for="(item, i) in itemsMobile" :key="i" :value="item" :to="item.value" active-color="primary">
<v-list-item-avatar>
<v-icon :icon="item.icon"></v-icon>
</v-list-item-avatar>
<v-list-item-title class="text-uppercase" v-text="item.title"></v-list-item-title>
</v-list-item>
</v-list>
</v-navigation-drawer> The error occurred after the update to version 3.0.0-beta.6 from 3.0.0-beta.5. Currently, the description of the v-list-item-avatar component has also disappeared (https://next.vuetifyjs.com/en/api/v-list-item-avatar/ -> 404). Was the v-list-item-avatar component removed? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
#15452, you just use v-avatar now, or in your case the prepend slot |
Beta Was this translation helpful? Give feedback.
-
Something this breaks is VMenus with an activator=parent prop. clicking the items in prepend/append no longer work :( This seems like a big change this late on in the beta stages |
Beta Was this translation helpful? Give feedback.
-
Hi, v-list-item-content looks deprecated too.
|
Beta Was this translation helpful? Give feedback.
#15452, you just use v-avatar now, or in your case the prepend slot