diff --git a/docs/src/pages/vue-components/input.md b/docs/src/pages/vue-components/input.md index 68935a33e7a..1e6daf20944 100644 --- a/docs/src/pages/vue-components/input.md +++ b/docs/src/pages/vue-components/input.md @@ -255,6 +255,42 @@ moneyFormatForComponent: { } ``` +Alternatively, you can use the vue-autonumeric component for a variety of decimal numbers and currencies. See https://www.npmjs.com/package/vue-autonumeric for details. Check http://autonumeric.org/#/guide for options. + +``` +```html + + + +``` + +```javascript +autoNumericOptions: { + decimalCharacter: ",", // European decimal separator + decimalPlaces: 2, // 2 decimals places after separator + digitGroupSeparator: ".", // European thousands separator + // Many more options available - see docs for vue-autonumeric + }, + ``` + + ## Validation ### Internal validation