feat: replace obsolete spinners with branded UI loading component

This commit is contained in:
2026-03-04 11:17:16 -05:00
parent b45f53417a
commit 84e98b6213
10 changed files with 179 additions and 21 deletions

View File

@ -4,6 +4,7 @@ import { useRouter } from 'vue-router'
import { useFavoritesStore } from '@/stores/favorites'
import { useI18n } from 'vue-i18n'
import { getImageUrl as utilGetImageUrl } from '@/utils/imageUrl'
import LoadingBranded from '@/components/common/LoadingBranded.vue'
const router = useRouter()
const { t } = useI18n()
@ -93,8 +94,7 @@ const hasVisibleItems = computed(() =>
<!-- Loading -->
<div v-if="favoritesStore.isLoading" class="state-center">
<div class="spinner"></div>
<p>{{ t('common.loading') }}</p>
<LoadingBranded :message="t('common.loading', 'Cargando favoritos')" icon="favorite_border" />
</div>
<template v-else>