Use 7zip for archive backend (#264)

* feat: use 7zip for archive backend

* fix: lint
This commit is contained in:
DecDuck
2025-10-13 13:02:27 +11:00
committed by GitHub
parent a201b62c04
commit fa9620eac1
5 changed files with 58 additions and 52 deletions

View File

@@ -3,11 +3,11 @@
<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'
'transition-all cursor-pointer h-2 rounded-full',
]"
@click="slideTo(i)"
/>
</div>
</template>
@@ -23,4 +23,4 @@ function slideTo(index: number) {
const offsetIndex = index + carousel.minSlide;
carousel.nav.slideTo(offsetIndex);
}
</script>
</script>