Skip to content

Instantly share code, notes, and snippets.

@Turbo87
Created June 8, 2016 15:48
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 Turbo87/adc578cba712db619e40666f2d39f16e to your computer and use it in GitHub Desktop.
Save Turbo87/adc578cba712db619e40666f2d39f16e to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Component.extend({
init() {
this._super(...arguments);
console.log(this.get('item.value'));
},
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
init() {
this._super(...arguments);
this.set('list', [1,2,3,4,5].map(x => ({ value: x })));
},
actions: {
update() {
this.set('list', [1,2,2,2,5].map(x => ({ value: x })));
},
},
});
{{#each list as |item|}}
{{my-component item=item}}
{{/each}}
<button {{action "update"}}>Update</button>
{
"version": "0.8.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.5.1",
"ember-data": "2.5.2",
"ember-template-compiler": "2.5.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment