Skip to content

Commit f3e57a7

Browse files
committed
Added inputmode decimal to BigNumInput
1 parent 43b9510 commit f3e57a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bignum_input.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<input type="number" :placeholder="placeholder" v-model="val" :min="min" :max="maxNum" :step="stepNum" @change="onChange">
2+
<input type="number" inputmode="decimal" :placeholder="placeholder" v-model="val" :min="min" :max="maxNum" :step="stepNum" @change="onChange">
33
</template>
44
<script>
55
import Big from 'big.js';

0 commit comments

Comments
 (0)