Skip to content

Commit

Permalink
Merge pull request #46 from w3bdesign/frontend
Browse files Browse the repository at this point in the history
TV link
  • Loading branch information
w3bdesign authored Nov 21, 2024
2 parents 5902d02 + a1444c3 commit 8f04e86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/customer/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<router-link to="/" class="text-2xl text-primary-600 font-bold flex-1"
>Frisørsalong</router-link
>
<router-link to="/tv-display" class="text-2xl text-primary-600 font-bold flex-1"
>TV Visning</router-link
>
<div class="flex-1 flex justify-end">
<div class="w-[250px]">
<WaitingTimeDisplay />
Expand All @@ -18,7 +21,7 @@
<script setup lang="ts">
import { computed } from 'vue'
import { useRoute } from 'vue-router'
import WaitingTimeDisplay from '@/components/WaitingTimeDisplay.vue'
import WaitingTimeDisplay from './components/WaitingTimeDisplay.vue'
const route = useRoute()
const isTVDisplay = computed(() => route.name === 'tv-display')
Expand Down

0 comments on commit 8f04e86

Please sign in to comment.