File size: 427 Bytes
0914710
 
c75f9b4
0914710
 
 
 
 
 
 
c75f9b4
 
 
 
 
0914710
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>