<template> <!-- <PartialsLoading v-if="isLoading" /> --> <PartialsSplashScreen v-if="showSplash" /> <NuxtLayout> <NuxtLoadingIndicator :throttle="0" /> <NuxtPage /> </NuxtLayout></template><script setup></script><style>.page-enter-active,.page-leave-active { transition: all 0.4s;}.page-enter-from { opacity: 0; transform: translateX(50px);}.page-leave-to { opacity: 0; transform: translateX(-50px);}</style>