2023-06-26 15:09:21 +08:00
|
|
|
<template>
|
|
|
|
<v-theme-provider :theme="isDark ? 'dark' : 'light'">
|
2023-07-06 15:33:21 +08:00
|
|
|
<v-app class="text-gray-700 dark:text-gray-200 flex flex-col">
|
2023-06-26 15:09:21 +08:00
|
|
|
<Nav />
|
2023-07-06 15:33:21 +08:00
|
|
|
|
|
|
|
<div style="--v-layout-top: 25px" class="m-auto">
|
|
|
|
<router-view v-slot="{ Component }">
|
|
|
|
<transition name="fade">
|
2023-07-11 14:42:35 +08:00
|
|
|
<div class="prose max-w-110ch m-auto">
|
2023-07-06 15:33:21 +08:00
|
|
|
<component :is="Component" />
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</router-view>
|
2023-06-26 15:09:21 +08:00
|
|
|
</div>
|
2023-07-06 15:33:21 +08:00
|
|
|
</v-app>
|
2023-06-26 15:09:21 +08:00
|
|
|
</v-theme-provider>
|
|
|
|
</template>
|