diff --git a/docs/plugins/index.md b/docs/plugins/index.md
index 9308aab00..096145217 100644
--- a/docs/plugins/index.md
+++ b/docs/plugins/index.md
@@ -26,3 +26,24 @@ client and server side.

+
+## Currency
+
+We expose `$fc` (format currency) function as a plugin to allow you to convert any number or string into a formatted currency string. Under the hood plugins uses Intl.NumberFormat class to handle formatting and therefore exposes the same options configuration.
+Here are few examples of how you can use it in templates.
+```javascript
+$fc(productGetters.getPrice(product).regular) // by default vsf-currency cookie is used to define target currency
+$fc(productGetters.getPrice(product).regular, { currency: 'USD' }) // you can easily override this behaviour by passing configuration object
+```
+
+Configuration object is an interface Intl.NumberFormatOptions, check it for all available options.
+
+---
+***NOTE***
+
+Why we are not using built-in i18n package currency configuration and $n function to cover currency displaying? The answer is because we must be able to handle multiple currencies within one store but in i18n package, currency and locale are in 1:1 relation when in Magento one store can have multiple languages and currencies set. Currency and locale are necessarily disjointed which is not true for i18n plugin.
+
+You can still use all i18n native functions to perform any formatting though.
+
+---
+
diff --git a/packages/theme/components/CartSidebar.vue b/packages/theme/components/CartSidebar.vue
index 8f855e858..511069ca4 100644
--- a/packages/theme/components/CartSidebar.vue
+++ b/packages/theme/components/CartSidebar.vue
@@ -97,12 +97,12 @@
:image="cartGetters.getItemImage(product)"
:title="cartGetters.getItemName(product)"
:regular-price="
- $n(cartGetters.getItemPrice(product).regular, 'currency')
+ $fc(cartGetters.getItemPrice(product).regular)
"
:special-price="
cartGetters.productHasSpecialPrice(product)
? getItemPrice(product).special &&
- $n(cartGetters.getItemPrice(product).special, 'currency')
+ $fc(cartGetters.getItemPrice(product).special)
: ''
"
:link="
@@ -196,11 +196,11 @@
>
{{ productGetters.getName(groupedItem.product) }}