<template> | |
<div class="bg-gray-200 items-center h-8"> | |
<TabComponent :description="switchTabDescription" :href="switchTabUrl" /> | |
<TabComponent description="docs" href="https://docs.trinca.tornidor.com/" /> | |
</div> | |
</template> | |
<script setup lang="ts"> | |
import TabComponent from '@/components/NavBar/TabComponent.vue' | |
const props = defineProps<{ | |
switchTabDescription: string, | |
switchTabUrl: string, | |
}>() | |
</script> | |