Skip to content

Instantly share code, notes, and snippets.

@jrowlingson
Last active October 18, 2016 17:13
Show Gist options
  • Save jrowlingson/8cd4ecfe7becd95682bf3c8305736704 to your computer and use it in GitHub Desktop.
Save jrowlingson/8cd4ecfe7becd95682bf3c8305736704 to your computer and use it in GitHub Desktop.
Ember twiddle 1
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
_title: 'foo',
title: Ember.computed('_title', function() {
return this.get('_title');
}),
actions: {
changeTitle() {
console.log('clicked');
this.set('_title', 'bar')
}
}
});
<h1 title={{title}}>Welcomee to {{appName}}</h1>
<br>
<br>
{{outlet}}
<button {{action 'changeTitle'}}>Change Title</button>
<br>
{
"version": "0.10.5",
"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.8.0",
"ember-data": "2.8.0",
"ember-template-compiler": "2.8.0",
"ember-testing": "2.8.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment