employeeList: function() {
return this.items.filter(item =>
Object.keys(this.filterItems).reduce((acc, filterKey) => {
let filterCondition = this.filterItems[filterKey];
return acc && !!~item[filterKey].indexOf(filterCondition);
}, true)
).sort(....);
}