i am working in a vuejs project and i am with a problem to check if a number is equal to an Array element. My code is this:
<div v-if="someValue != arrayElement">
//
</div>
My problem is how i loop through the array to check if there is an equal value to the var 'someValue'.
v-if="arrayElement.includes(someValue)"