Skip to content

Instantly share code, notes, and snippets.

@patocallaghan
Last active January 18, 2019 15:25
Show Gist options
  • Save patocallaghan/82c087503fb61d540ff2490ec02992e2 to your computer and use it in GitHub Desktop.
Save patocallaghan/82c087503fb61d540ff2490ec02992e2 to your computer and use it in GitHub Desktop.
Ember Inspect 3.4
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
count: 0,
someValue: Ember.computed('count', function() {
let value = `Count: ${this.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": "3.4.3",
"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