mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
44 lines
852 B
Vue
44 lines
852 B
Vue
<script setup lang="ts">
|
|
import type { SelectMenuItem } from '@nuxt/ui'
|
|
|
|
const items = ref([
|
|
{
|
|
label: 'benjamincanac',
|
|
value: 'benjamincanac',
|
|
avatar: {
|
|
src: 'https://github.com/benjamincanac.png',
|
|
alt: 'benjamincanac'
|
|
}
|
|
},
|
|
{
|
|
label: 'romhml',
|
|
value: 'romhml',
|
|
avatar: {
|
|
src: 'https://github.com/romhml.png',
|
|
alt: 'romhml'
|
|
}
|
|
},
|
|
{
|
|
label: 'noook',
|
|
value: 'noook',
|
|
avatar: {
|
|
src: 'https://github.com/noook.png',
|
|
alt: 'noook'
|
|
}
|
|
},
|
|
{
|
|
label: 'sandros94',
|
|
value: 'sandros94',
|
|
avatar: {
|
|
src: 'https://github.com/sandros94.png',
|
|
alt: 'sandros94'
|
|
}
|
|
}
|
|
] satisfies SelectMenuItem[])
|
|
const value = ref(items.value[0])
|
|
</script>
|
|
|
|
<template>
|
|
<USelectMenu v-model="value" :avatar="value?.avatar" :items="items" class="w-48" />
|
|
</template>
|