ember.js - How do I specify a mix of an expression and a string as a class for an ember component? -


i want this

{{#my-custom-component class="some-class-name {{dynamicproperty}}" }} 

but literally rendering some-class-name {{dynamicproperty}} classname, rather value represents.

use concat helper:

{{#my-custom-component class=(concat 'some-class-name' dynamicproperty) }} 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -