ff-webpage/app.vue

13 lines
189 B
Vue
Raw Normal View History

2024-10-30 14:02:47 +00:00
<template>
<NuxtPage />
</template>
2024-11-06 07:59:07 +00:00
<script setup>
const runtimeConfig = useRuntimeConfig();
const appTitle = runtimeConfig.public.app.title;
useHead({
title: appTitle,
});
</script>