18 lines
506 B
Vue
Raw Normal View History

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">
<div class="prose max-w-100ch m-auto">
<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>