Skip to content

Instantly share code, notes, and snippets.

@gmurphey
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmurphey/41aa553e1a4de85973fe to your computer and use it in GitHub Desktop.
Save gmurphey/41aa553e1a4de85973fe to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
return Ember.A([
{ title: 'hello' },
{ title: 'world' }
]);
}
});
{{#each model as |note|}}
{{note.title}}
{{/each}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment