File size: 439 Bytes
0914710
 
c75f9b4
c92d24c
0914710
 
 
 
 
 
c75f9b4
 
 
 
 
0914710
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div class="fixed top-2 right-5 mr-2 items-center">
    <TabComponent :description="switchTabDescription" :href="switchTabUrl" />
    <TabComponent description="docs" href="https://docs.ml-trinca.tornidor.com/" />
  </div>
</template>

<script setup lang="ts">

import TabComponent from '@/components/NavBar/TabComponent.vue'

const props = defineProps<{
  switchTabDescription: string,
  switchTabUrl: string,
}>()
</script>