Skip to content

Instantly share code, notes, and snippets.

@patocallaghan
Created January 18, 2019 15:28
Show Gist options
  • Save patocallaghan/42e540deee5046cf3ed00a5ddba4a375 to your computer and use it in GitHub Desktop.
Save patocallaghan/42e540deee5046cf3ed00a5ddba4a375 to your computer and use it in GitHub Desktop.
Ember Inspect 2.18
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
count: 0,
someValue: Ember.computed('count', function() {
let value = `Count: ${this.get('count')}`;
return Ember.inspect(value);
}),
});
<h1>Value: {{someValue}}</h1>
{
"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": "2.18.2",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment