mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
17 lines
281 B
Vue
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>
|