mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
24 lines
592 B
Vue
24 lines
592 B
Vue
<script setup lang="ts">
|
|
const items = [
|
|
'https://picsum.photos/640/640?random=1',
|
|
'https://picsum.photos/640/640?random=2',
|
|
'https://picsum.photos/640/640?random=3',
|
|
'https://picsum.photos/640/640?random=4',
|
|
'https://picsum.photos/640/640?random=5',
|
|
'https://picsum.photos/640/640?random=6'
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<UCarousel
|
|
v-slot="{ item }"
|
|
arrows
|
|
:prev="{ color: 'primary' }"
|
|
:next="{ variant: 'solid' }"
|
|
:items="items"
|
|
class="w-full max-w-xs mx-auto"
|
|
>
|
|
<img :src="item" width="320" height="320" class="rounded-lg">
|
|
</UCarousel>
|
|
</template>
|