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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user