vue-simple-currency
v1.3.13
Published
A simple currency input for vue3 that works as expected.
Downloads
11
Readme
Simple Vue3 Currency Input
This package provides a HTML input element that works for the Euro (€) currency.
Installation
You can install the package via composer:
npm i -S vue-simple-currency
Usage (VS Code)
- Use in your project (probably a custom currency input component) and assign a v-model ref of type number
- The input handles all user inputs and updates the ref with the cent-value
<template>
<CurrencyInputVue v-model="myNumberRef" />
</template>