mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-25 02:46:39 +07:00
30 lines
597 B
Vue
30 lines
597 B
Vue
<template>
|
|
<main>
|
|
<ContentDoc>
|
|
<template v-slot="{ doc }">
|
|
<h1>{{ doc.title }}</h1>
|
|
<article>
|
|
<ContentRenderer :value="doc" />
|
|
</article>
|
|
</template>
|
|
|
|
<template v-slot:not-found="{ props: { path } }">
|
|
<HomeReference :url="path" />
|
|
</template>
|
|
</ContentDoc>
|
|
</main>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
titleTemplate: (titleChunk) => {
|
|
return titleChunk ? `${titleChunk} • Obsidian Garden` : "Obsidian Garden";
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
scrollToTop: true,
|
|
};
|
|
</script>
|