mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 06:51:46 +01:00
16 lines
400 B
Vue
16 lines
400 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
combo: ['size']
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UAvatarGroup>
|
|
<UChip inset text="1">
|
|
<UAvatar src="https://github.com/benjamincanac.png" alt="Benjamin Canac" />
|
|
</UChip>
|
|
<UAvatar src="https://github.com/romhml.png" alt="Romain Hamel" />
|
|
<UAvatar src="https://github.com/noook.png" alt="Neil Richter" />
|
|
</UAvatarGroup>
|
|
</template>
|