mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 02:08:21 +00:00
fix: make footer stick to the bottom
This commit is contained in:
parent
d872c93941
commit
ed7be09e54
14
src/App.vue
14
src/App.vue
@ -1,12 +1,14 @@
|
||||
<template>
|
||||
<div class="w-full min-h-screen px-1vw py-5 reset" :class="[theme]">
|
||||
<div class="flex flex-col w-full min-h-screen px-1vw py-5 reset" :class="[theme]">
|
||||
<NavBar />
|
||||
|
||||
<router-view v-slot="{ Component }">
|
||||
<keep-alive :max="5">
|
||||
<component :is="Component" :key="$route.fullPath" />
|
||||
</keep-alive>
|
||||
</router-view>
|
||||
<main class="flex-1">
|
||||
<router-view v-slot="{ Component }">
|
||||
<keep-alive :max="5">
|
||||
<component :is="Component" :key="$route.fullPath" />
|
||||
</keep-alive>
|
||||
</router-view>
|
||||
</main>
|
||||
|
||||
<FooterComponent />
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user