From 89f15170f5c9f86c227a7db8f6d4530952434842 Mon Sep 17 00:00:00 2001 From: Arthur Lefebvre Date: Wed, 11 Feb 2026 18:13:30 +0100 Subject: [PATCH] Add search for mobile view --- front/src/AppNavBar.vue | 18 +++++++++++++++--- front/src/Modal.vue | 6 +++--- front/src/NavBarSearch.vue | 18 +++++++++++++++--- front/src/ScanBook.vue | 2 +- 4 files changed, 34 insertions(+), 10 deletions(-) diff --git a/front/src/AppNavBar.vue b/front/src/AppNavBar.vue index bf9500e..02337ab 100644 --- a/front/src/AppNavBar.vue +++ b/front/src/AppNavBar.vue @@ -3,12 +3,13 @@ import { useRouter, RouterLink } from 'vue-router' import NavBarSearch from './NavBarSearch.vue' import { useAuthStore } from './auth.store.js' + import Modal from './Modal.vue' const authStore = useAuthStore(); const router = useRouter(); - const popupDisplay = ref(false) const isMenuActive = ref(false) + const isSearchBarShown = ref(false) function logout() { authStore.logout(); @@ -23,6 +24,14 @@ PLM + @@ -32,9 +41,12 @@ +
+ +