property (path) Ember.ComputedProperty
public
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
Please login to continue.