How do I reverse the order of an array using v-for and orderBy filter in Vue JS? March 27, 2023 by Tarik Simple and concise solution: <li v-for="item in items.slice().reverse()"> //do something with item ... </li>