Files
bknd-examples/app/components/Footer.vue
2026-02-17 03:53:59 +05:30

30 lines
1.1 KiB
Vue

<script lang="ts" setup>
import { computed } from 'vue'
import { useRoute } from 'vue-router'
const route = useRoute()
const pathname = computed(() => route.path)
</script>
<template>
<footer class="row-start-3 flex gap-6 flex-wrap items-center justify-center">
<NuxtLink class="flex items-center gap-2 hover:underline hover:underline-offset-4"
:to="pathname === '/' ? '/user' : '/'">
<img aria-hidden src="/file.svg" alt="File icon" width="16" height="16" />
{{ pathname === '/' ? 'User' : 'Home' }}
</NuxtLink>
<!-- a tag is required to hit the middleware in place -->
<a class="flex items-center gap-2 hover:underline hover:underline-offset-4" href="/admin">
<img aria-hidden src="/window.svg" alt="Window icon" width="16" height="16" />
Admin
</a>
<a class="flex items-center gap-2 hover:underline hover:underline-offset-4" href="https://bknd.io" target="_blank"
rel="noopener noreferrer">
<img aria-hidden src="/globe.svg" alt="Globe icon" width="16" height="16" />
Go to bknd.io
</a>
</footer>
</template>