Files
arthome/app/components/Tab.vue
2024-08-25 18:33:37 +02:00

19 lines
211 B
Vue

<script setup lang="ts">
import type { Tab } from '~~/server/utils/db'
defineProps<{
tab: PropType<Tab>
}>()
</script>
<template>
<div>
Tab
{{ tab }}
</div>
</template>
<style scoped>
</style>