Skip to content

Instantly share code, notes, and snippets.

@mistahenry
Created November 30, 2018 17:11
Show Gist options
  • Save mistahenry/0a7322894e8245231a089c5911f7b82a to your computer and use it in GitHub Desktop.
Save mistahenry/0a7322894e8245231a089c5911f7b82a to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
import { computed } from '@ember/object';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
init(){
this._super(...arguments);
this.first = "Mista";
this.last = "Henry";
this.name = 'Not MistaHenry';
},
first: null,
last: null,
name: computed('first', 'last', {
get: function() {
return this.get('first') + ' ' + this.get('last');
},
set: function(key, value) {
var [ first, last ] = value.split(' ');
this.set('first', first);
this.set('last', last);
}
})
});
{
"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