Skip to content
Advertisement

How to delete many data in array if condition vue js

I have select many data and post to back end, it is succeed but after that i want to delete array data in front end without reload. I try with splice it is only delete one or two max is tow

Here is my code

JavaScript

after then i wont to delete all this baskets if checkbox is true

i have try

JavaScript

and also try this

JavaScript

still does not work as my expectation

Advertisement

Answer

You can filter all false checkboxes:

JavaScript
Advertisement