Swipe cards one by one

This commit is contained in:
2025-07-13 18:13:22 +02:00
parent 6a818e9da5
commit f9d5f0d856
6 changed files with 67 additions and 117 deletions

View File

@@ -29,7 +29,6 @@ export const useCardStore = defineStore("cardStore", {
...card,
id: index,
})) ?? [];
console.log(this.cards);
},
removeCard(id: number) {
const index = this.cards.findIndex((card) => card.id === id);