It is currently on the roadmap. However, you can also use calculated bindings for this.
<template is="dom-repeat" as="agreementTypeCount" index-as="agreementTypeCountI" items="{{agreementTypeCounts}}"> <a href$="{{computeAgreementUrl(style_domain, selectedCountryCode, agreementTypeCount.type)}}">{{agreementTypeCount.type}}</a> </template>
and then declare it
Polymer({ ... computeAgreementUrl(styleDomain, countryCode, type){ return "/"+styleDomain+"/agreements/#/table/country/"+countryCode+"/type/"+type+"/sort/start-desc/size/10/page/1/"; } })
Note the $ symbol next to href. It is recommended to use attribute bindings ($ =) to the attributes of your own elements.
source share