15 lines
370 B
JavaScript
15 lines
370 B
JavaScript
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
import { pluralize } from 'ember-inflector';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
items: null,
|
|
itemNoun: 'item',
|
|
|
|
emptyMessage: computed('itemNoun', function() {
|
|
let items = pluralize(this.get('itemNoun'));
|
|
return `There are currently no ${items}`;
|
|
}),
|
|
});
|