diff --git a/src/components/Card.vue b/src/components/Card.vue index 1e37ffe..4df9226 100644 --- a/src/components/Card.vue +++ b/src/components/Card.vue @@ -28,7 +28,7 @@
Цена: - {{decimalFormatter.format(price)}} руб. + {{decimalFormatter.format(price)}}
Add diff --git a/src/components/CartItem.vue b/src/components/CartItem.vue index e00da03..49c8039 100644 --- a/src/components/CartItem.vue +++ b/src/components/CartItem.vue @@ -18,7 +18,7 @@

{{item.title}}

- {{ decimalFormatter.format(item.price) }} руб. + {{ decimalFormatter.format(item.price) }} Close
diff --git a/src/components/Drawer.vue b/src/components/Drawer.vue index 2d405df..aeb4e43 100644 --- a/src/components/Drawer.vue +++ b/src/components/Drawer.vue @@ -42,19 +42,19 @@
Итого:
- {{ decimalFormatter.format(totalPrice) }} руб. + {{ decimalFormatter.format(totalPrice) }}
Налог 5%:
- {{ decimalFormatter.format(totalPrice * 0.05) }} руб. + {{ decimalFormatter.format(totalPrice * 0.05) }}
К оплате:
- {{ decimalFormatter.format(totalPrice * 0.95) }} руб. + {{ decimalFormatter.format(totalPrice * 0.95) }}