Sortby Vue
computed: {
orderedUsers: function () {
return _.orderBy(this.users, 'name')
}
}
Lazy Louse
computed: {
orderedUsers: function () {
return _.orderBy(this.users, 'name')
}
}