0.0.1 • Published 9 years ago

ember-computed-by v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Ember-computed-by

Ember computed by made to allow computed.oneWay that still has its bindings to original property.

CAVEAT: if you need to set property as undefined you might have some issues and it would better to have computed.oneWay addition to an observer.

Installation

npm install ember-computed-by

Using

import Ember from 'ember';
import computedBy from 'ember-computed-by';

export default Ember.Component.extend({
  finalValue: computedBy('value');
});