add watchers for min and max in inputNumber

This commit is contained in:
Rijn 2017-07-21 11:16:46 -05:00
parent 7f08fb512a
commit fa66bfb19f
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);
}
}
};