I currently have data that is filtered by category.
this.data = response.data.items.filter(item => item.category_id === categ_id)
Now, I am looking to apply an additional filter to only show items with a certain quantity count.
For example:
this.data => items with the category id of "categ_id" and a quantity greater than 0
How can I accomplish this?