0👍
You need to change this line this.cart.findIndex((x) => x === item)
to this.cart.findIndex((x) => x.id === item.id)
. Assuming that ID is unique.
- [Vuejs]-Best approach for adding animation to large text blocks in Vue
- [Vuejs]-Inertiajs – Flashed data stays on the screen for one too many refreshes
Source:stackexchange.com