mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
5e98ef3f51
* ui: Add Ref component
10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
import Component from '@ember/component';
|
|
import { set } from '@ember/object';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
didReceiveAttrs: function() {
|
|
set(this.target, this.name, this.value);
|
|
},
|
|
});
|