When utilizing the v-for to loop through an array as shown below:
<ul id="example-1">
<li v-for="item in items">
{{ item.message }}
</li>
</ul>
The items are displayed vertically as follows:
- Item 1
- Item 2
- Item ...
- Item n
Is there a method to insert the current item above the last item in each iteration?
- Item n
- Item ...
- Item 2
- Item 1
Appreciate your assistance!