Skip to content

Instantly share code, notes, and snippets.

@Juraci
Created September 28, 2016 00:42
Show Gist options
  • Save Juraci/ded4ae8904a934aaf50c117ffb5bd9e0 to your computer and use it in GitHub Desktop.
Save Juraci/ded4ae8904a934aaf50c117ffb5bd9e0 to your computer and use it in GitHub Desktop.
objectModel
import Ember from 'ember';
export default Ember.Controller.extend({
firstName: 'Juraci',
lastName: 'Neto',
fullName: Ember.computed('firstName', 'lastName', function() {
return `${this.get('firstName')} ${this.get('lastName')}`;
})
});
<h1>Welcome {{fullName}}</h1>
<br>
<br>
{{outlet}}
<br>
<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