Skip to content

Instantly share code, notes, and snippets.

@courtneyphillips
Last active February 25, 2016 22:44
Show Gist options
  • Save courtneyphillips/d1c572217ef983bb7adf to your computer and use it in GitHub Desktop.
Save courtneyphillips/d1c572217ef983bb7adf to your computer and use it in GitHub Desktop.
Ember computed properties in components
//in component
import Ember from 'ember';
export default Ember.Component.extend({
sortProperties: ['date:desc'],
sortedAnswers: Ember.computed.sort('comments', 'sortProperties'),
actions: {
...
}
});
//calling component
{{some-component comments=post.comments}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment