Skip to content

Instantly share code, notes, and snippets.

@b4n92uid
Last active August 17, 2021 22:17
Show Gist options
  • Save b4n92uid/d5da2fb4aa86ca15efb638f27c6eec93 to your computer and use it in GitHub Desktop.
Save b4n92uid/d5da2fb4aa86ca15efb638f27c6eec93 to your computer and use it in GitHub Desktop.
[Vue] CurrencyMixin
import currency from "currency.js";
function formatCurrency(value, formatWithSymbol = true) {
return currency(value, {
symbol: "DA",
pattern: "# !",
formatWithSymbol,
separator: " ",
decimal: ",",
precision: 0,
}).format();
}
export default {
methods: {
formatCurrency,
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment