{{#component "component-wrap" "a" href=href class=listItemClass}}
Something
{{/component}}
I would expect the generated element to look like:
<a href="..." class="...">
Something
</a>
Instead only the class elements are bound, but the href isn't. You need to fix this so that everything passed in the hash binds as attributes to the element.
Consider the usage example
I would expect the generated element to look like:
Instead only the class elements are bound, but the href isn't. You need to fix this so that everything passed in the hash binds as attributes to the element.