Skip to content

Instantly share code, notes, and snippets.

@Juraci
Created September 26, 2016 13:30
Show Gist options
  • Save Juraci/421a399a4cb52f9893490709549c517b to your computer and use it in GitHub Desktop.
Save Juraci/421a399a4cb52f9893490709549c517b to your computer and use it in GitHub Desktop.
Computed Property 1
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 to {{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