alias (dependentKey) Ember.ComputedProperty
public
Creates a new property that is an alias for another property on an object. Calls to get
or set
this property behave as though they were called on the original property.
1 2 3 4 5 6 7 8 9 10 11 12 | let Person = Ember.Object.extend({ name: 'Alex Matchneer' , nomen: Ember.computed.alias( 'name' ) }); let alex = Person.create(); alex.get( 'nomen' ); // 'Alex Matchneer' alex.get( 'name' ); // 'Alex Matchneer' alex.set( 'nomen' , '@machty' ); alex.get( 'name' ); // '@machty' |
Parameters:
-
dependentKey
String
Returns:
-
Ember.ComputedProperty
- computed property which creates an alias to the original value for property.
Please login to continue.