1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 21:33:18 +01:00
Files
dozzle/assets/components/common/CarouselItem.vue
2025-01-10 12:47:01 -08:00

17 lines
281 B
Vue

<template>
<div class="w-full min-w-full shrink-0 snap-start snap-always p-0.5">
<slot />
</div>
</template>
<script lang="ts" setup>
const { id, title } = defineProps<{ id: string; title?: string }>();
defineExpose({
id,
title,
});
</script>
<style scoped></style>