From 909d49a3e2fa305d5ff79593d14322eaac022a61 Mon Sep 17 00:00:00 2001 From: clonbg Date: Thu, 14 Aug 2025 12:59:16 +0200 Subject: [PATCH] Add active state styling to navigation menu items --- app/components/NavBar.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/app/components/NavBar.vue b/app/components/NavBar.vue index d4e9d95..76f0ac5 100644 --- a/app/components/NavBar.vue +++ b/app/components/NavBar.vue @@ -33,14 +33,16 @@ - + import { ref, capitalize } from "vue"; +import { useSystemStore } from "~/stores/system"; const drawer = ref(false); const { data, status, signOut } = useAuth(); @@ -63,4 +66,9 @@ const logout = async () => { }; - +