0👍
✅
You need to loop through sortedCats
array to get the desired result instead of data
as sortedCats
returns new value every time sort is clicked through computed
property.
<tr v-for="item in sortedCats" :key="item.id">
Source:stackexchange.com