<template>
<div>
{{ formatPrice(price) }}
</div>
</template>
<script>
export default {
data() {
return {
price: 2000
};
},
methods: {
formatPrice(value) {
return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(value);
}
}
}
</script>