fix: add back home button on about page

This commit is contained in:
2026-04-27 10:59:11 +02:00
parent 722548118a
commit 39cf54624a
5 changed files with 19 additions and 15 deletions
+2
View File
@@ -5,6 +5,7 @@ import PageFooter from '@components/PageFooter.vue'
import { onBeforeMount, onMounted, onUpdated, ref } from 'vue'
import NavBar from '@components/NavBar.vue'
import { updateDynamicContent } from '@/lib/articles'
import BackHomeButton from '@/components/BackHomeButton.vue'
const html = ref<string>('')
@@ -23,6 +24,7 @@ onUpdated(updateDynamicContent)
<main class="article">
<NavBar />
<div v-html="html"></div>
<BackHomeButton />
<PageFooter />
</main>
</template>