[Vuejs]-Vue JS replacing orderBy filter with lodash

0👍

Yes you did,

Change the computed sort() to this:

sort: function() {
  return _.orderBy(this.items, this.activeColumn.name, this.activeColumn.order);
}

Leave a comment