mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
17 lines
558 B
Vue
17 lines
558 B
Vue
<script setup lang="ts">
|
|
const items = [
|
|
'https://picsum.photos/600/600?random=1',
|
|
'https://picsum.photos/600/600?random=2',
|
|
'https://picsum.photos/600/600?random=3',
|
|
'https://picsum.photos/600/600?random=4',
|
|
'https://picsum.photos/600/600?random=5',
|
|
'https://picsum.photos/600/600?random=6'
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<UCarousel v-slot="{ item }" :items="items" :ui="{ item: 'basis-full md:basis-1/2 lg:basis-1/3' }" indicators class="rounded-lg overflow-hidden">
|
|
<img :src="item" class="w-full" draggable="false">
|
|
</UCarousel>
|
|
</template>
|