vue-currency-input-field
v1.0.4
Published
Vue <input/> component for formatting currency and numbers
Downloads
6
Maintainers
Readme
Vue Currency Input Field
Lightweight currency input component for Vue < 5k 😎 Emits the formatted value to parent component
Usage
npm i vue-currency-input-field
<script setup>
import CurrencyInputField from 'vue-currency-input-field';
const options = {
currency: '$',
placeHolder: 'Please enter a number',
};
function handleValueChange(value) {
//todo value '$123,456'
}
</script>
<template>
<CurrencyInputField :options="options" @value-change="handleValueChange"/>
</template
Contact
Feel free to ping me 💫 [email protected]