I'm trying to figure out how to show job.name if the job.name from jobs is also in anotherArray.
<li v-for='job in jobs'>
<template v-if="job.name in anotherArray"
{{ job.name }}
</template>
</li>
note anotherArray is structured the same way as the jobs array. So I want to be checking element.name in anotherArray
How can I do this?