What is the correct string representation of a resource to convey binding properties in an Ember application suite?
I have tried both of the following:
import Dependency from 'app/utils/utility';
export default Em.ObjectController.extend({
sampleBinding: 'Dependency.value'
});
export default Em.ObjectController.extend({
sampleBinding: 'utils:utility.value'
});
But snapping does not work in both cases.
Any help is appreciated.
Thank!
source
share