Observer Property in component

Hi there! I have a component, that probem Edit fiddle - JSFiddle - Code Playground

how set property title when observe other proprety, and display title in view.

Hi.

avoid use set(“title”), use a computed value chain that require other attribute.

//  this.set('titles', titles);
titles: Ember.computed("someProper", function() {
1 Like