2018-09-25 16:28:26 +00:00
|
|
|
import Component from '@ember/component';
|
|
|
|
import { computed } from '@ember/object';
|
2018-05-25 20:33:22 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
export default Component.extend({
|
2018-05-25 20:33:22 +00:00
|
|
|
content: null,
|
|
|
|
list: computed('content', function() {
|
|
|
|
return this.get('content').keys;
|
|
|
|
}),
|
|
|
|
});
|