1.0.2 • Published 6 years ago

@thechatfood/vue-currency v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Vue currency

Vue currency filter

Contribution - Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build your for production
npm run build

# publish library on NPM (Check your version first before publish.)
npm publish

Usage

# install package
npm install @chatfood/vue-currency --save

Use it =)

import Vue from "vue";
import ChatfoodCurrency from "@chatfood/vue-currency";

Vue.use(ChatfoodCurrency);
<template>
  <p>{{ 12.43 | currency }}</p>
</template>