Merge pull request #6886 from betavs/hotfix/input-mask-update-model-value
fix(component): [input-mask] same value triggers updatepull/6893/head
commit
ea410e36a2
|
@ -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