mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38: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>
|