mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 11:37:04 +02:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
|
|
export default Component.extend({
|
|
content: null,
|
|
list: computed('content', function() {
|
|
return this.get('content').keys;
|
|
}),
|
|
});
|