feat(reader): immersive series-read route + route-aware AppShell (suppress TopNav)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-17 16:29:21 -04:00
parent 129af2e594
commit f52c31367a
3 changed files with 19 additions and 4 deletions
+10 -4
View File
@@ -1,12 +1,18 @@
<template>
<TopNav />
<main class="fc-content">
<slot />
</main>
<slot v-if="route.meta.immersive" />
<template v-else>
<TopNav />
<main class="fc-content">
<slot />
</main>
</template>
</template>
<script setup>
import { useRoute } from 'vue-router'
import TopNav from './TopNav.vue'
const route = useRoute()
</script>
<style scoped>