fix: add back home button on about page

This commit is contained in:
2026-04-27 10:59:11 +02:00
parent 722548118a
commit 39cf54624a
5 changed files with 19 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
<script setup lang="ts">
import { BACK_LINK } from '@lib/config'
</script>
<template>
<template v-if="$route.fullPath != '/'">
<RouterLink class="link-back" to="/"><span v-html="BACK_LINK"></span></RouterLink>
</template>
</template>