fix(component): [input-mask] same value triggers update

pull/6886/head
betavs 2024-11-28 18:23:00 +08:00
parent 786f9c65e6
commit abef49699c
1 changed files with 1 additions and 0 deletions

View File

@ -447,6 +447,7 @@ export default {
},
updateModelValue(value) {
if (this.currentVal === value) return;
const val = this.unmask ? this.getUnmaskedValue() : value;
this.currentVal = value;