Function

deprecatingAlias (dependentKey, options) ComputedProperty public

Module: @ember/object

Available since v1.7.0

import { deprecatingAlias } from '@ember/object/computed';
dependentKey
String
options
Object
Options for `Ember.deprecate`.
returns
ComputedProperty
computed property which creates an alias with a deprecation to the original value for property.

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, but also print a deprecation warning.

let Hamster = Ember.Object.extend({
  bananaCount: Ember.computed.deprecatingAlias('cavendishCount', {
    id: 'hamster.deprecate-banana',
    until: '3.0.0'
  })
});

let hamster = Hamster.create();

hamster.set('bananaCount', 5); // Prints a deprecation warning.
hamster.get('cavendishCount'); // 5

© 2020 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://api.emberjs.com/ember/2.18/functions/@ember%2Fobject%2Fcomputed/deprecatingAlias