[Vuejs]-How to use v-maska for input?

0👍

You can achieve this by using the following mask: <input ... v-maska :data-maska="9 999#.99" :data-maska-tokens="9:[0-9]:repeated|0:[0-9]:optional" data-maska-reversed /> This mask will allow you to input the number 100200500.99, with the optional 99 cents at the end.

Leave a comment