Float label support for InputNumber
parent
d1a5d23af9
commit
96b90bf85a
|
@ -113,6 +113,11 @@ export default {
|
||||||
_index: null,
|
_index: null,
|
||||||
isSpecialChar: null,
|
isSpecialChar: null,
|
||||||
timer: null,
|
timer: null,
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
focused: false
|
||||||
|
}
|
||||||
|
},
|
||||||
created() {
|
created() {
|
||||||
this.numberFormat = new Intl.NumberFormat(this.locale, this.getOptions());
|
this.numberFormat = new Intl.NumberFormat(this.locale, this.getOptions());
|
||||||
const numerals = [...new Intl.NumberFormat(this.locale, {useGrouping: false}).format(9876543210)].reverse();
|
const numerals = [...new Intl.NumberFormat(this.locale, {useGrouping: false}).format(9876543210)].reverse();
|
||||||
|
|
Loading…
Reference in New Issue