fix(component): [input-mask] same value triggers update
parent
786f9c65e6
commit
abef49699c
|
@ -447,6 +447,7 @@ export default {
|
|||
},
|
||||
|
||||
updateModelValue(value) {
|
||||
if (this.currentVal === value) return;
|
||||
const val = this.unmask ? this.getUnmaskedValue() : value;
|
||||
|
||||
this.currentVal = value;
|
||||
|
|
Loading…
Reference in New Issue