mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-29 10:40:26 +01:00
Working on arthome
This commit is contained in:
13
app/components/Category.vue
Normal file
13
app/components/Category.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
18
app/components/Tab.vue
Normal file
18
app/components/Tab.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user