mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
24 lines
387 B
Vue
24 lines
387 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
defaultProps: {
|
|
items: [
|
|
'https://picsum.photos/320/320?v=1',
|
|
'https://picsum.photos/320/320?v=2',
|
|
'https://picsum.photos/320/320?v=3'
|
|
]
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UCarousel
|
|
v-slot="{ item }"
|
|
class="w-xs h-xs"
|
|
>
|
|
<img
|
|
:src="item"
|
|
class="rounded-lg"
|
|
>
|
|
</UCarousel>
|
|
</template>
|