如何在v-select项目的右侧显示头像?
我以为这会奏效:VuetifyjsPlayground
下面是来自playground的代码:
<template>
<v-app>
<v-main>
<v-select label="Select" :items="items" item-title="title" item-value="title">
<template v-slot:item="{ props, item }">
<template v-slot:append>
<v-avatar :image="item.avatar"></v-avatar>
</template>
</template>
</v-select>
</v-main>
</v-app>
</template>
<script setup>
import { ref } from 'vue'
const items = ref([
{ title: "California", avatar: "https://cdn.vuetifyjs.com/docs/images/logos/vuetify-logo-v3-slim-text-light.svg" },
{ title: "Colorado", avatar: "https://cdn.vuetifyjs.com/docs/images/logos/vuetify-logo-v3-slim-text-light.svg" },
{ title: "Florida", avatar: "https://cdn.vuetifyjs.com/docs/images/logos/vuetify-logo-v3-slim-text-light.svg" },
])
</script>
谢谢!
2条答案
按热度按时间91zkwejq1#
目前第3版的文档有点混乱,但为了更好的练习,我会使用列表项元素来定制和绑定 prop 。你可能还想使用选择槽来改进UI/UX。
示例:Vuetify Play
文档:https://vuetifyjs.com/en/components/selects/#slots
igsr9ssn2#
您的问题是您正在使用插槽中的插槽(
append
嵌套在item
中)。v-select支持或,而不是两者嵌套在一起。对于您的用例,您可以只使用item
插槽更新的操场