vuetify-money
v1.2.0
Published
Money component for vuetify 2.x.
Downloads
5,582
Maintainers
Readme
vuetify-money
If you use Vuejs with Vuetify 2.x and you need a component to work with money format, maybe this can help you.
v-text-field: R$ 12.345.678,90
v-model: 12345678.90
Dependency
- VueJS
- Vuetify 2.x
Links
Install
$ npm install vuetify-money --save
Register component:
1- Create a src/plugins/vuetify-money.js file with the following content:
import Vue from "vue";
import VuetifyMoney from "vuetify-money";
Vue.use(VuetifyMoney);
export default VuetifyMoney;
2- Add file to src/main.js:
import "./plugins/vuetify-money.js";
Parent component:
<template>
<div>
<vuetify-money
v-model="value"
v-bind:label="label"
v-bind:placeholder="placeholder"
v-bind:readonly="readonly"
v-bind:disabled="disabled"
v-bind:outlined="outlined"
v-bind:clearable="clearable"
v-bind:valueWhenIsEmpty="valueWhenIsEmpty"
v-bind:options="options"
v-bind:properties="properties"
/>
Parent v-model: {{ value }}
</div>
</template>
<script>
export default {
data: () => ({
value: "1234567.89",
label: "Value",
placeholder: " ",
readonly: false,
disabled: false,
outlined: true,
clearable: true,
valueWhenIsEmpty: "",
options: {
locale: "pt-BR",
prefix: "R$",
suffix: "",
length: 11,
precision: 2
},
properties: {
hint: "my hint"
// You can add other v-text-field properties, here.
},
})
};
</script>