Skip to content

Instantly share code, notes, and snippets.

@mike-north
Last active July 17, 2019 23:07
Show Gist options
  • Save mike-north/0dd50c5f628eabd032ef34a27ccd3453 to your computer and use it in GitHub Desktop.
Save mike-north/0dd50c5f628eabd032ef34a27ccd3453 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
import Foo from '../utils/foo';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
myFoo: new Foo()
});
Native class example
{{this.myFoo.countText}}
{
"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.10.0",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
}
}
import { computed, set, action } from '@ember/object';
export default class Foo {
count = 0;
@computed('count')
get countText() {
return `the count is ${this.count}`
}
@action
increment() {
set(this, 'count', this.count+1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment