If you're looking for a simple solution, try the following:
<template>
<div> {{ total | toUSD }} </div>
</template>
<script>
export default {
data () {
return {
total: 123456
}
},
filters: {
toUSD (value) {
return `$${value.toLocaleString()}`
}
}
}
</script>
For a more complex approach, you can use this code or the one below:
Add this in main.js
import {currency} from "@/currency";
Vue.filter('currency', currency)
Then include this in currency.js
const digitsRE = /(\d{3})(?=\d)/g
export function currency (value, currency, decimals) {
value = parseFloat(value)
if (!isFinite(value) || (!value && value !== 0)) return ''
currency = currency != null ? currency : '$'
decimals = decimals != null ? decimals : 2
var stringified = Math.abs(value).toFixed(decimals)
var _int = decimals
? stringified.slice(0, -1 - decimals)
: stringified
var i = _int.length % 3
var head = i > 0
? (_int.slice(0, i) + (_int.length > 3 ? ',' : ''))
: ''
var _float = decimals
? stringified.slice(-1 - decimals)
: ''
var sign = value < 0 ? '-' : ''
return sign + currency + head +
_int.slice(i).replace(digitsRE, '$1,') +
_float
}
Lastly, in your template
:
<div v-for="item in items">
{{item.price | currency}}
</div>
You may also find useful information in related answers here.