From 7ecf1eb142178a4524f912cc1f8f54859a24852a Mon Sep 17 00:00:00 2001 From: aserrador Date: Thu, 28 May 2026 17:18:18 -0500 Subject: [PATCH] =?UTF-8?q?feat:=20add=20'Ver=20Cat=C3=A1logo'=20option=20?= =?UTF-8?q?to=20main=20navigation=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/NavBar.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 2ca0199..5c563fc 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -94,10 +94,11 @@ isAuthenticated: false, user: null, api: inject('api'), - menuItems: [ - { title: 'Inicio', route: '/', icon: 'mdi-home'}, - { title: 'Comprar', route:'/comprar', icon: 'mdi-cart'}, - ], + menuItems: [ + { title: 'Inicio', route: '/', icon: 'mdi-home'}, + { title: 'Comprar', route:'/comprar', icon: 'mdi-cart'}, + { title: 'Ver Catálogo', route: '/catalog', icon: 'mdi-store'}, + ], menuAdminItems: [ { title: 'Cuadrar tarro', route: '/cuadrar_tarro', icon: 'mdi-calculator'}, { title: 'Cuadres de tarro', route: '/cuadres_de_tarro', icon: 'mdi-chart-bar'},