mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
19 lines
211 B
Vue
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>
|