Is there a practical alternative to observing ContainerView
as an array? I need to manually manage an array of views, and some of those views have properties based off of their position within their parent, for example:
number: function getNumber() {
return `Number ${this.get('parentView').indexOf(this)}: `;
}.property('parentView.[]')
I’m getting deprecation warnings, but am not aware of an alternative.