feat(UI): actualización de colores de ruta a amarillo y fix navegación transporte
This commit is contained in:
@ -40,14 +40,33 @@ const router = createRouter({
|
||||
component: () => import('@/views/BusStopDetailsView.vue'),
|
||||
},
|
||||
{
|
||||
path: '/taxi',
|
||||
name: 'taxi',
|
||||
component: () => import('@/views/TaxiView.vue'),
|
||||
},
|
||||
{
|
||||
path: '/shuttle/:id',
|
||||
name: 'shuttle-details',
|
||||
component: () => import('@/views/ShuttleDetalleView.vue'),
|
||||
path: '/transporte',
|
||||
component: () => import('@/views/TransporteLayout.vue'),
|
||||
children: [
|
||||
{
|
||||
path: '',
|
||||
redirect: '/transporte/viajes-turisticos'
|
||||
},
|
||||
{
|
||||
path: 'viajes-turisticos',
|
||||
name: 'ViajesTuristicos',
|
||||
component: () => import('@/views/transporte/ViajesTuristicos.vue')
|
||||
},
|
||||
{
|
||||
path: 'viajes-turisticos/:id',
|
||||
name: 'ShuttleDetalle',
|
||||
component: () => import('@/views/transporte/ShuttleDetalle.vue'),
|
||||
meta: {
|
||||
padre: 'ViajesTuristicos',
|
||||
titulo: 'Detalle del viaje'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'taxis',
|
||||
name: 'TaxisLocales',
|
||||
component: () => import('@/views/transporte/TaxisLocales.vue')
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// ─── Vistas de Descubrir ─────────────────────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user