#1031·text-mask

Exponential numbers failer

Author: amir04lm26Created Oct 20, 2020Updated May 26, 2024

I use this library with v-mask and, It seems that it doesn't support exponential numbers. Thanks for any help

export function getCurrencyMask () { return createNumberMask({ prefix: '', allowDecimal: true, decimalLimit: 8, includeThousandsSeparator: true, allowNegative: false, allowLeadingZeroes: true }) }

<input v-model="toDollarInputModel" v-mask="mask" placeholder="1" type="text" min="0" >

data () { return { mask: getCurrencyMask() } },