WIP Basic reimbursement lists

This commit is contained in:
2020-07-09 15:14:09 +02:00
parent 95743330e4
commit eaac245f4e
11 changed files with 212 additions and 110 deletions
@@ -0,0 +1,7 @@
import Component from '@glimmer/component';
import { sort } from '@ember/object/computed';
export default class ReimbursementListComponent extends Component {
itemSorting = Object.freeze(['id:desc']);
@sort('args.items', 'itemSorting') itemsSorted;
}