mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
13 lines
231 B
Vue
13 lines
231 B
Vue
<template>
|
|
<NuxtPage>
|
|
<slot />
|
|
</NuxtPage>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useServerSeoMeta({
|
|
titleTemplate: (titleChunk) => {
|
|
return titleChunk ? `${titleChunk} · Lysand` : "Lysand";
|
|
},
|
|
});
|
|
</script> |