like this
<p>{{outputQuantity}}</p>
computed: {
outputQuantity(){
return this.quantity.replace(".", ",");
}
}
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi,
How to Replace a dot with a comma for a number in vue.js?
for example:
new Vue({ el:'#app', data : { quantity : '0.25', }
and in HTML I have
<p>{{quantity}}</p>
the result is 0.25 but I want 0,25 (so with comma)
like this
<p>{{outputQuantity}}</p>
computed: {
outputQuantity(){
return this.quantity.replace(".", ",");
}
}
Please or to participate in this conversation.