15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
|
|
text: computed(function() {
|
|
return 'home';
|
|
}),
|
|
|
|
computedClasses: computed('classNames', function() {
|
|
return this.get('classNames').join(' ');
|
|
}),
|
|
});
|