From 017870b61a105b933694059da6f1625956de772f Mon Sep 17 00:00:00 2001 From: padreug Date: Thu, 31 Jul 2025 22:19:23 +0200 Subject: [PATCH] refactor: Update App component to conditionally display navbar based on route - Import `computed` and `useRoute` from Vue and Vue Router. - Add a computed property to control the visibility of the navbar based on the current route. - Update the App.vue template to conditionally render the navbar and footer only when not on the login page. --- src/App.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 4bbe64f..3cd1907 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,6 @@