13 lines
197 B
Vue
13 lines
197 B
Vue
<template>
|
|
<span>{{ formatPrice(value) }} ₽</span>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {formatPrice} from "@/helpers.js";
|
|
|
|
const props = defineProps({
|
|
value: {
|
|
default: 0,
|
|
},
|
|
});
|
|
</script> |