I'm working on a vue-js problem.
I got an data-element (object) called items. I am looping through these products and display a dropdown with a list of the items.
Now I would like to show only those items who have a value in an array thats called "Watt" and a Title.
This is an example item of items:
Item
-Title
-Date
-Specifications [Array]
-- [0] Name: "Watt"
-- [0] Value: 5
-- [1] Name: "Weight"
-- [1] Value: 100
Any idea how to solve this?