Skip to content

Instantly share code, notes, and snippets.

@wonderful123
Created September 1, 2019 03:17
Show Gist options
  • Save wonderful123/3ea3b67899f904b6adadbdba93ce67e3 to your computer and use it in GitHub Desktop.
Save wonderful123/3ea3b67899f904b6adadbdba93ce67e3 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
const data = [{
fruit: 'apples',
price: 5
}, {
fruit: 'bananas',
price: 2
}, {
fruit: 'pears',
price: 3
}];
const columns = [{
title: 'Fruit',
propertyName: 'fruit'
}, {
title: 'Price',
propertyName: 'price'
}];
export default Ember.Controller.extend({
data: data,
columns: columns
});
<ModelsTable
@data={{data}}
@columns={{columns}}
/>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2",
"ember-decorators": "6.1.0",
"ember-models-table": "2.10.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment