mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-25 05:52:33 +01:00
10 lines
196 B
Vue
10 lines
196 B
Vue
<template>
|
|
<main class="!max-w-none prose dark:prose-invert">
|
|
<ContentDoc :path="`/home/${locale}`" />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { locale } = useI18n()
|
|
</script>
|