How to arrange data (comments) based on which has the most votes using vue.js? Thanks.
data: {
comments: [{
title: "Great article!",
votes: 5
}, {
title: "VueJs commenting system with votes!",
votes: 5
}, {
title: "The random pun that gets a lot of upvotes",
votes: 85
}]
}