Merge pull request #1431 from rijn/1134

Add watchers for min and max in inputNumber
This commit is contained in:
Aresn 2017-08-02 10:53:22 +08:00 committed by GitHub
commit 06290cb3a9
2 changed files with 12 additions and 1 deletions

View file

@ -273,6 +273,12 @@
},
currentValue (val) {
this.changeVal(val);
},
min () {
this.changeVal(this.currentValue);
},
max () {
this.changeVal(this.currentValue);
}
}
};