Here is the astro code I'm working on:
---
import BaseLayout from '../../layouts/BaseLayout.astro';
import ListadoProfesionales from "../../components/pages/ListadoProfesionales/ListadoProfesionales.vue";
---
<BaseLayout title="Listado de profesionales">
<main class="container py-6">
<ListadoProfesionales client:only="vue" />
</main>
</BaseLayout>
The "ListadoProfesionales" component is currently only rendering in the browser using VueJS.
Is there a way to display a Spinner or loading UI element while AstroJS is fetching and rendering that specific component?