Skip to content

Instantly share code, notes, and snippets.

@willrax
Created March 12, 2016 17:56
Show Gist options
  • Save willrax/818acf13614bd055cc5b to your computer and use it in GitHub Desktop.
Save willrax/818acf13614bd055cc5b to your computer and use it in GitHub Desktop.
import Ember from 'ember';
const { computed, get } = Ember;
export default function(dependentKey) {
return computed(dependentKey, {
get() {
return get(this, dependentKey);
},
set(_, value) {
return value;
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment