Good afternoon, Vue.JS can calculate directly in the mustache {{}} but when a value comes with comma, NaN appears the result that is, if the variable is value = 2 and I make {{value - 1}} it displays 1 for good but if I make value = 2,5 and then {{value - 1}} it displays NaN
<p>{{ valor - 2 }}</p>
How could I calculate this comma value in mustaches?