adjust footer edit page

This commit is contained in:
Tilman Behrend 2025-09-15 11:04:42 +02:00
parent 646355d0f9
commit ccd7adf0cb
3 changed files with 1284 additions and 822 deletions

File diff suppressed because it is too large Load diff

View file

@ -485,18 +485,19 @@
<router-view />
</q-page-container>
<q-footer elevated class="bg-white text-black font">
<q-footer
v-if="!$route.meta.hideFooter"
elevated
class="bg-white text-black font"
>
<q-tabs align="justify" dense>
<q-route-tab to="/" icon="home" />
<q-route-tab to="/people" icon="people" />
<q-route-tab to="/entry" icon="add_circle_outline" />
<q-route-tab to="/messages" icon="mail" />
<q-route-tab to="/profile" icon="person" />
</q-tabs>
</q-footer>
</q-layout>
</template>

View file

@ -25,9 +25,10 @@ const routes = [
component: () => import('pages/WavePage.vue')
},
{
path: 'edit/:id?',
path: 'edit',
name: 'edit',
component: () => import('pages/EditPage.vue')
component: () => import('pages/EditPage.vue'),
meta: { hideFooter: true }
},
],
},