mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
16 lines
346 B
Vue
16 lines
346 B
Vue
|
|
<template>
|
||
|
|
<div class="sticky top-2 z-10 flex items-center justify-center p-2">
|
||
|
|
<Badge variant="secondary">
|
||
|
|
{{ categoryName }}
|
||
|
|
</Badge>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { Badge } from "~/components/ui/badge";
|
||
|
|
|
||
|
|
const { categoryName } = defineProps<{
|
||
|
|
categoryName: string;
|
||
|
|
}>();
|
||
|
|
</script>
|