Why does this work:
<span>${{10 + 20}}</span>
<!-- <span>$30</span> -->
But this doesn't work:
<span>${{cart.subtotal + cart.taxTotal}}</span>
<!-- <span>$1020</span> -->
It seems that the properties from the component are passed to the template as strings, irregardless that they are typed as numbers on the component itself.