From 5cdb173a46fdf13b49e7c7359fc6b32ed0d4ab65 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Thu, 13 Nov 2025 14:12:51 -0600 Subject: [PATCH] Feat: Agregar link de Informe Empleados en la sidebar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Agregar entrada en navigationPrimary para acceder al informe de empleados - Icono: i-lucide-users - Ubicación: entre Informe Comercios y Comparativa Cosechas --- nuxt4-app/app/components/app/AppSidebar.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nuxt4-app/app/components/app/AppSidebar.vue b/nuxt4-app/app/components/app/AppSidebar.vue index 0efab66..0d5f52c 100644 --- a/nuxt4-app/app/components/app/AppSidebar.vue +++ b/nuxt4-app/app/components/app/AppSidebar.vue @@ -297,6 +297,12 @@ const navigationPrimary = computed(() => [ to: '/informe-comercios', active: route.path === '/informe-comercios' }, + { + label: 'Informe Empleados', + icon: 'i-lucide-users', + to: '/informe-empleados', + active: route.path === '/informe-empleados' + }, { label: 'Comparativa Cosechas', icon: 'i-lucide-calendar-range',