Can someone guide me on sorting data (comments) based on the number of votes using vue.js? Much appreciated!
data: {
comments: [{
title: "Excellent blog post!",
votes: 5
}, {
title: "Interactive commenting feature in VueJs with voting capabilities!",
votes: 5
}, {
title: "Unexpected pun receiving high upvotes",
votes: 85
}]
}