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

angular - DownloadURL return null in below code -

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -