open-consul/ui/packages/consul-ui/app/components/ref/index.js

10 lines
215 B
JavaScript
Raw Normal View History

import Component from '@ember/component';
import { set } from '@ember/object';
export default Component.extend({
tagName: '',
didReceiveAttrs: function() {
set(this.target, this.name, this.value);
},
});