fix: inital eslint errors

This commit is contained in:
Huskydog9988
2025-04-13 21:44:29 -04:00
parent 1e19ccb442
commit e95091bbf5
74 changed files with 339 additions and 304 deletions
+1 -2
View File
@@ -3,7 +3,6 @@
<button
v-for="(_, i) in amount"
:key="i"
@click="() => slideTo(i)"
:class="[
carousel.currentSlide == i ? 'bg-blue-600 w-6' : 'bg-zinc-700 w-3',
'transition-all cursor-pointer h-2 rounded-full',
@@ -15,7 +14,7 @@
<script setup lang="ts">
import { injectCarousel } from "vue3-carousel";
const carousel = inject(injectCarousel)!!;
const carousel = inject(injectCarousel)!;
const amount = carousel.maxSlide - carousel.minSlide + 1;