UNPKG

ember-ui-components

Version:

A collection of common user interface components

26 lines (22 loc) 414 B
/** @module ember-ui-components */ import Mixin from '@ember/object/mixin'; import { alias } from '@ember/object/computed'; /** @class DestinationElementMixin @namespace Mixins */ export default Mixin.create({ /** @property destinationElementId @type {String} @private */ destinationElementId: null, /** @property to @type {String} */ to: alias('destinationElementId') });