Javascript/vue shortcut to if any of the array with the key “name” corresponds to “Apple”

What is the shortcut with this script?

<div v-if=" items[items.length - 1].name === 'Apple' || items[items.length - 2].name === 'Apple'  || items[1].name === 'Apple'">

it is working but the “Apple” value might place on the third with more than 5 pairs, so I have to list all possible rank.