remove v-lazy from RecipeCard

each v-lazy creates a new IntersectionObserver, tanking the performance
This commit is contained in:
Sebastian Frysztak 2025-07-29 17:46:12 +02:00
commit aa34daea0f

View file

@ -1,6 +1,5 @@
<template>
<!-- Wrap v-hover with a div to provide a proper DOM element for the transition -->
<v-lazy>
<div>
<v-hover
v-slot="{ isHovering, props }"
@ -99,7 +98,6 @@
</v-card>
</v-hover>
</div>
</v-lazy>
</template>
<script lang="ts">