ComputedProperty#property()

property (path) Ember.ComputedPropertypublic

Defined in packages/ember-metal/lib/computed.js:220

Sets the dependent keys on this computed property. Pass any number of arguments containing key paths that this computed property depends on.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let President = Ember.Object.extend({
  fullName: Ember.computed(function() {
    return this.get('firstName') + ' ' + this.get('lastName');
 
    // Tell Ember that this computed property depends on firstName
    // and lastName
  }).property('firstName', 'lastName')
});
 
let president = President.create({
  firstName: 'Barack',
  lastName: 'Obama'
});
 
president.get('fullName'); // 'Barack Obama'

Parameters:

path String
zero or more property paths

Returns:

Ember.ComputedProperty
this
doc_EmberJs
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.