there is no a direct function where you can insert it into your directive
<div v-for="item in items">
However, you should use computed property such as
data: {
items:['telephone', 'cover', 'sticker'];
},
computed: {
reverseItems: function() {
return this.items.reverse();
}
}
<div v-for="item in reverseItesm">