Files
pihkaal-me/app/app.vue
Pihkaal 55798b5490
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m21s
feat: update title
2026-03-16 13:49:43 +01:00

21 lines
372 B
Vue

<script setup lang="ts">
const { locale } = useI18n();
const app = useAppStore();
const pageTitle = computed(() => {
if (!app.booted) return "Pihkaal - Developer";
return `${$t(`screens.${app.screen}`)} | Pihkaal - Developer`;
});
useHead({
title: pageTitle,
htmlAttrs: { lang: locale },
});
</script>
<template>
<UApp>
<NuxtPage />
</UApp>
</template>