diff --git a/frontend/src/App.vue b/frontend/src/App.vue index ab48f34..0511b83 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -28,6 +28,7 @@ const { loadMaps } = useGoogleMaps() // Iniciar descarga asíncrona masiva de Google Maps al bootear VUE (Ahorra ~3 seg de espera en MapView) loadMaps() +const isLandingPage = computed(() => route.name === 'landing') const isSplashScreen = computed(() => route.name === 'splash') const isAuthScreen = computed(() => { return route.path === '/login' || route.path === '/register' || route.name === 'auth' @@ -183,7 +184,7 @@ onUnmounted(() => {